vue 中页面销毁,定时器还在走?

1: 在mounted() {

this.timer = setInterval(() => {    this.rechargeInfo();
}, 3000);

}创建一个定时器。
2: 切面路由跳转的时候
beforeDestroy() {

this.timer = null;
clearInterval(this.timer);

},
destroyed() {

this.timer = null;
clearInterval(this.timer);

} 进行清除
。。。
理论上组件销毁的时候定时器已经清除了。、
但是: 跳到其他页面的时候定时器依然在走。
疑问。


一只斗牛犬
浏览 2075回答 1
1回答

天涯尽头无女友

this.timer = null; clearInterval(this.timer);顺序反了吧,你这样写clearInterval的参数是null 怎么能正确销毁计时器呢clearInterval(this.timer);this.timer = null;改成这样试下
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Vue.js