微信小程序-定时器setTimeout开发

  startReportHeart() {

    let that = this;

    var timerTem = setTimeout(function () {

      that.getMessageList();

      that.startReportHeart();

    }, 1000)

    // 保存定时器name

    that.setData({

      timer: timerTem

    })

  },

你可能感兴趣的:(微信小程序,小程序)