vue中清除定时器(在activated使用与methods中使用的区别)
1、在activated中使用, 关闭或者离开当前页则不调用了data() { return { timer: null }}async activated() { await this.getQuery() this.getData(this.getQuery()) this.timer = setInterval(() => { this.getData(this.getQuery()) }, 1000)},deactivated() { clearInterval
原创
2021-08-10 16:16:09 ·
620 阅读 ·
0 评论