微信小程序setInterval使用

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使用)