VUE定时任务 及 清除定时任务

method:{

//这里调用了定时任务

toSon(){

      //定时任务

      var self = this;

      this.deaa = window.setInterval(() => {

        setTimeout(self.end(), 0)

      }, 1000)

}

end(){

      if(this.timer == ''){

        //定时器的内容写在这里面

        console.log("=====>>>定时器")

      }else{

        //销毁定时任务

        window.clearInterval(this.deaa);

      }

 }

}


//销毁页面后调用的方法 注意 这个beforeDestroy是一个生命周期

beforeDestroy() {

    this.timer = '1'

}

你可能感兴趣的:(VUE定时任务 及 清除定时任务)