我正在使用新的ES6 类,并且很难理解为什么我可以引用该this
变量是其中一种方法。
//班级
class Form{
constructor(){
var self = this;
}
assemble(){
log(self);
}
}
//调用
var form = new Form();
form.assemble();
//返回
window object (not the reference to the class object)