收藏
回答

wx.exitMiniProgram() 使用5秒倒计时退出小程序,此方法报错?

startCountdown() {

    let that = this; // 保存this引用

    this.setData({

      timer: setInterval(() => {

        let currentCountdown = that.data.countdown - 1;

        that.setData({

          countdown: currentCountdown

        });

        if (currentCountdown <= 0{

          console.log("倒计时结束");

          wx.exitMiniProgram({

            success: (res) => {

              console.log("退出小程序");

            },

            fail: (err) => {

              console.log("退出小程序失败", err);

            }

          });

          clearInterval(that.data.timer);

          // 倒计时结束后的操作

        }

      }, 1000)

    });

  },


回答关注问题邀请回答
收藏

1 个回答

登录 后发表内容