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)         
},

亲测有效,快去试试吧!

posted @ 2022-09-26 10:12  云里知音  阅读(1654)  评论(0)    收藏  举报