如何在vuejs方法中使用settimeout()函数?
我已经尝试过类似的方法,但是没有用
fetchHole: function () {
//get data
},
addHole: function () {
//my query add new
setTimeout(function () { this.fetchHole() }, 1000)
},
我收到此错误消息: Uncaught TypeError: this.fetchHole is not a function
尝试以下操作:
setTimeout(this.fetchHole, 1000)
因为this
在匿名函数中,该匿名函数是附加到该匿名函数的,而不是附加到您的主要函数