定时刷新setInterval

VUE中

data() {
  return {
    timer: null, /*定时器*/
  }
}

在方法中或钩子函数中使用

// 定时刷新 
if(this.timer === null) {
  this.timer = setInterval(() => {
    this.drawLine(this.dateValue); // 刷新时获取数据
  }, 600000);
}

清除定时器

beforeDestroy() {
  clearInterval(this.timer);
  this.timer = null;
},

你可能感兴趣的:(定时刷新setInterval)