美文网首页
VUE定时任务 及 清除定时任务

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

作者: 各种萌新 | 来源:发表于2020-09-02 17:53 被阅读0次

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定时任务 及 清除定时任务

      本文链接:https://www.haomeiwen.com/subject/qwvwsktx.html