vue 设置定时执行函数——进阶版(离开页面停止定时,clearInterval() 方法)
clearInterval() 方法可取消由 setInterval() 设置的 timeout。
·
我在vue页面写了echarts折线图,数据更新通过定时器来执行。然鹅,离开页面就开始报错了。
原因是,
离开页面,定时器并不会停止,但是图表已经不在了。
怎么办呢?我研究了一下,vue有生命周期,
在beforeDestroy()
里面加上停止定时就好了。
clearInterval() 方法可取消由 setInterval() 设置的 timeout。
beforeDestroy(){
clearInterval(this.t)
}
created()
里面写上
created(){
this.t=setInterval(this.timer,1000)
}
好的,完成了。细节下次补充
更多推荐
已为社区贡献2条内容
所有评论(0)