我目前正在进入es6并希望使用类模式。 但是为什么“this.hola”在“onResize()”中未定义?
class Ui {
constructor() {
this.win = $(window);
this.hola = 'hola';
this.init();
}
init() {
this.addListeners();
}
addListeners() {
this.win.on('resize load', this.onResize);
}
onResize() {
console.log(this.hola);
}
}
导出默认Ui;