收藏
回答

定时器手指接触或者按住屏幕以及屏幕锁定,定时器就停了?

定时器手指接触或者按住屏幕以及屏幕锁定,定时器就停了?
count: function () {
    const _that = this;
    clearInterval(timer);


    timer = setInterval(function () {
      _that.setData({
        time: _that.data.time - 1,
        disabled: true,
      }, () => {
        if (_that.data.time <= 0) {
          clearInterval(timer);
          _that.setData({
            time: 60,
            disabled: false,
          })
        }
      })
    }, 1000)
  }
回答关注问题邀请回答
收藏

2 个回答

登录 后发表内容
问题标签