赞
踩
以下代码实现了,小程序页面的 数据定时刷新,页面跳转后停止定时器,页面切换回来后重新启动周期定时器
onShow: function () {
// 页面显示
//周期为:2秒 的周期定时器
let that = this;
that.data.myintervalid = setInterval(function () {
util.request(api.TopicListd, { page: that.data.page, size: that.data.size, userid: app.globalData.userInfo.id }).then(function (res) {
if (res.errno === 0) {
console.log('接受服务器设备初始化 =', res.data.devicesupdata);
that.setData({
scrollTop: 0,
topicList: res.data.devicesupdata,
deviceupdatalist: res.data.devicesupdata,
showPage: true,
count: res.data.devicestate.count
});
}
});
}, 2000)
},
onHide: function () {
// 页面隐藏
//关闭 周期为:2秒 的周期定时器
clearInterval(this.data.myintervalid);
},
onUnload: function () {
// 页面关闭
//关闭 周期为:2秒 的周期定时器
clearInterval(this.data.myintervalid);
},
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。