VUE中
data() {
return {
timer: null, /*定时器*/
}
}
在方法中或钩子函数中使用
// 定时刷新
if(this.timer === null) {
this.timer = setInterval(() => {
this.drawLine(this.dateValue); // 刷新时获取数据
},60000);
}
清除定时器
beforeDestroy() {
clearInterval(this.timer);
this.timer = null;
},