vue中data定义
data() {
return {
isok:10,
}
}
在vue中使用定时器 如下 mounted是钩子函数
mounted(){
console.log(this.isok) //能获取isok 10
setInterval(function(){
console.log(this.isok) //不能获取 isok
}, 3000);
}
这是为什么呢?
原因就是:定时器的this是指向 window的。
那有什么方法来解决这个问题呢?答案是有的,两种
第一种:
用箭头函数:箭头函数中的this指向是固定不变(定义函数时的指向),在vue中指向vue;
mounted(){
setInterval(()=>{ consolog.log(this.isok) }, 3000);
}
第二种:
使用 var that = this ,就可以正常调用了。
mounted(){
var that=this;
setInterval(()=>{
console.log(that.isok)
}, 3000);
}