vue清除定时器,A页面跳转到B页面----定时器
程序员文章站
2024-02-14 13:08:16
...
定时器
this.timer = setInterval(() => {
this.second--
if (this.second === 0) {
this.second = 60
this.check = true
clearInterval(time)
}
}, 1000);
我们在data里面声明变量
timer: null,
check
second: 60,
最后别忘了清除定时器
beforeDestroy(){
clearInterval(this.timer)
},
上一篇: @pathvariable注解的使用
下一篇: @PathVariable 注解使用