欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

定时刷新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;
},