标签: javascript es6-promise
我读了this问题和this问题。两者都处理函数中的变量范围,而不处理我无法做出 that 技巧的类。如何在回调方法中设置类变量?
class A{ constructor(){ this.name=""; } callbackFunction(){ this.name="abc"; //not working, this is undefined } loadComponents(){ promise.then(this.callbackFunction); } }