美文网首页
微信小程序setInterval使用

微信小程序setInterval使用

作者: 每天进步一点点5454 | 来源:发表于2022-11-28 17:08 被阅读0次
1.定义参数
   data: {
        setTime: null, //定时器
    },

2.调用定时器,每一秒调用一次
    startCount: function (id) {
        const _this = this;
        _this.data.setTime = setInterval(function(){
           //写入逻辑,调用逻辑方法
        }, 1000);
    },

3.结束时清除定时器
 clearInterval(_this.data.setTime)

4. 监听页面卸载,清除定时器
    onUnload() {
        const _this =this;
        //结束定时器
        clearInterval(_this.data.setTime)
    },


相关文章

网友评论

      本文标题:微信小程序setInterval使用

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