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

发布于 2022-09-11 16:40:20 字数 421 浏览 10 评论 0

1: 在mounted() {

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

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

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

},
destroyed() {

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

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

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

淡墨 2022-09-18 16:40:20

this.timer = null;这个影响到了,去掉就好了

﹏雨一样淡蓝的深情 2022-09-18 16:40:20

你要调用销毁钩子 destroy 清除定时器

烧了回忆取暖 2022-09-18 16:40:20
this.timer = null;
clearInterval(this.timer);

顺序反了吧,你这样写clearInterval的参数是null 怎么能正确销毁计时器呢

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

改成这样试下

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文