定时刷新setInterval
程序员文章站
2022-04-12 11:57:29
...
VUE中
data() {
return {
timer: null, /*定时器*/
}
}
在方法中或钩子函数中使用
// 定时刷新
if(this.timer === null) {
this.timer = setInterval(() => {
this.drawLine(this.dateValue); // 刷新时获取数据
},60000);
}
清除定时器
beforeDestroy() {
clearInterval(this.timer);
this.timer = null;
},
上一篇: Python MySQL数据库基本操作及项目示例详解
下一篇: 教你几行代码实现全平台端口数据的转发