作者:心胸宽大的榛子lcf | 来源:互联网 | 2023-10-10 10:34
howIcanusesettimeout()functioninavuejsmethod?我如何在vuejs方法中使用settimeout()函数?Ihavealready
how I can use settimeout() function in a vuejs method?
我如何在vuejs方法中使用settimeout()函数?
I have already tried something like this, but it doesn't work
我已经尝试过类似的东西,但它不起作用
fetchHole: function () {
//get data
},
addHole: function () {
//my query add new
setTimeout(function () { this.fetchHole() }, 1000)
},
I get this Error message : Uncaught TypeError: this.fetchHole is not a function
我收到此错误消息:未捕获TypeError:this.fetchHole不是一个函数
5 个解决方案