vue中使用定时器setInterval
vue中使用定时器setIntervalthis.timer=setInterval(this.fetchData,1000);clearInterval(this.timer);beforeDestroy(){clearInterval(this.timer);},
·
vue中使用定时器setInterval
this.timer = setInterval(this.fetchData, 1000);
clearInterval(this.timer);
beforeDestroy() {
clearInterval(this.timer);
},
更多推荐
已为社区贡献10条内容
所有评论(0)