Vue 中 setInterval 定时器的销毁和创建

1.在data种定义 timer 数据源 用来接收定时器

data () {
    return {
      timer: ''
    }
  },

2、封装清除定时器方法

clearTimer () {
    this.timer && clearInterval(this.timer)
 }

二、使用

方法一

1.使用

   setTimer () {
      // 调用之前先清除一遍定时器
      this.clearTimer()
      this.timer = setInterval(() => {
      }, 1000)
    },

2.销毁

beforeDestroy () {
    this.clearTimer()
}

方法二

setTimer () {
      // 调用之前先清除一遍定时器
      this.clearTimer()
      // 调用之前先清除一遍定时器
      this.timer = setInterval(() => 
      }, 1000)
      this.$once('hook:beforeDestroy', () => {
        this.clearTimer()
      })
    },

三、注意

被包含在 keep-alive 中创建的组件,会多出两个生命周期的钩子: activated 、deactivated
activated是当 keepalive 包含的组件再次渲染的时候触发
deactivated是当 keepalive 包含的组件销毁的时候触发
被缓存的组件是不会走beforeDestroy生命周期的
这个时候就要使用 deactivated生命周期去销毁定时器

3.1销毁

deactivated() {
    this.clearTimer()
}

3.2销毁

 setTimer () {
      // 调用之前先清除一遍定时器
      this.clearTimer()
      // 调用之前先清除一遍定时器
      this.timer = setInterval(() => 
      }, 1000)
      this.$once('hook:deactivated', () => {
        this.clearTimer()
      })
    },

  • 3
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值