new hot 页面中的 this 指向有问题,调用 API 的回调中,需要使用箭头函数写法,才能直接调用到 this,否则 this 指向外层了。
// 错误写法
complete:function() {
this.loading = false;
},
// 正确写法
complete:()=> {
this.loading = false;
},
new hot 页面中的 this 指向有问题,调用 API 的回调中,需要使用箭头函数写法,才能直接调用到 this,否则 this 指向外层了。
// 错误写法
complete:function() {
this.loading = false;
},
// 正确写法
complete:()=> {
this.loading = false;
},
0 个回复