美文网首页
【小程序】跳转其他页面关闭定时器

【小程序】跳转其他页面关闭定时器

作者: 歌声缓缓 | 来源:发表于2021-01-25 17:07 被阅读0次

    data{

    inte:" "

    },

    onshow:function(){

    _this.setData({      

    inte:setInterval(function () {       

     _this.GetGroupPurchaseList();    

      }, 2000)   })

    }

    关闭页面,清除定时器

    onHide:function(){   

     var _this=this;   

     console.log("onHide方法执行")   

     clearInterval(_this.data.inte)}, 

    onUnload:function(){   

     var _this=this;   

     console.log("onUnload方法执行")   

     clearInterval( _this.data.inte)}

    相关文章

      网友评论

          本文标题:【小程序】跳转其他页面关闭定时器

          本文链接:https://www.haomeiwen.com/subject/mmkizktx.html