uniapp 定时器清不掉问题
在onUnload中清除,只对非tabBar页面有效。
onShow(){ this.timer = setInterval(()=>{ this.number++; console.log("21",this.number); },1000) }, onUnload(){ clearInterval(this.timer) }
在onHide中清除定时器,只对tabBar页面有效。
onShow(){ this.timer = setInterval(()=>{ this.number++; console.log("21",this.number); },1000) }, onHide(){ clearInterval(this.timer) },
亲测有效,快去试试吧!

浙公网安备 33010602011771号