为了账号安全,请及时绑定邮箱和手机立即绑定

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

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

一只斗牛犬 2019-01-28 10:31:00
1: 在mounted() {this.timer = setInterval(() => {    this.rechargeInfo(); }, 3000);}创建一个定时器。2: 切面路由跳转的时候beforeDestroy() {this.timer = null; clearInterval(this.timer);},destroyed() {this.timer = null; clearInterval(this.timer);} 进行清除。。。理论上组件销毁的时候定时器已经清除了。、但是: 跳到其他页面的时候定时器依然在走。疑问。
查看完整描述

1 回答

?
天涯尽头无女友

TA贡献1831条经验 获得超9个赞

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

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

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

改成这样试下


查看完整回答
反对 回复 2019-01-28
  • 1 回答
  • 0 关注
  • 2073 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信