【小程序】跳转其他页面关闭定时器
2021-01-25 本文已影响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)}