gpt4 book ai didi

javascript - 在 NodeJS 的 ES6 回调中调用基类

转载 作者:行者123 更新时间:2023-11-30 09:48:29 25 4
gpt4 key购买 nike

例如我有以下类(class):

class X extends Y
{
constructor() { super(); }

method() {
asyncMethod( function( err ) {
super.method( err );
} );
}
}

但是,super 不是基类Y。如何将 super 传递给该回调?

除了使用箭头函数,还有什么解决方案吗?

最佳答案

一种可能的解决方案是使用箭头函数,例如,

asyncMethod( err => super.method( err ) );

关于javascript - 在 NodeJS 的 ES6 回调中调用基类,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37719811/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com