我是ES6的新手,请尝试迁移旧的javascript代码。 现在我的课使用方法,但不清楚为什么不是所有方法都附加到“ this”上。 甚至不清楚我是否可以将方法用作函数(并作为回调传递)
class MyClass{
construtor (parameters)
{
this.myInternalState = new ExternalClass ( this.method1CallBack );
this.varClass1
this.varClass2...
}
method1CallBack (){} //OK attached to this
method2 (parameter){} //KO not found in this object
}
在代码语法或方法使用说明中,我不清楚我的错误在哪里。