我正在尝试访问我的视图模型属性并将其绑定到promise的“then”函数中,如下所示:
let that = this;
this.getDate().then(data => {
that.binding.style.backgroundColor = "white";
console.log(that.property);
});
事情是“这个”是未定义的,所以我该如何得到那些?
答案 0 :(得分:0)
我的错误是试图在调试器中读取“this”时我应该尝试读取的变量是_this5,它是由babel transpiller为ES5创建的。