最佳答案
在我的类中有一个类似的函数
showMessageSuccess(){
var that = this;
this.messageSuccess = true;
setTimeout(function(){
that.messageSuccess = false;
},3000);
}
我怎样才能重写它,这样我就不必将对“ this”的引用存储在“ that”变量中?如果我在 setTimeout 中使用“ this”,则 messageSuccess bool 似乎不会更改/得到更新。