admin管理员组

文章数量:1559082

app.js app onlaunch函数加上下面这段代码

if (wx.caniuse("getupdatemanager")) {
      let updatemanager = wx.getupdatemanager();
      updatemanager.oncheckforupdate((res) => {
        // 请求完新版本信息的回调
        console.log(res.hasupdate);
      })
      updatemanager.onupdateready(() => {
        wx.showmodal({
          title: '更新提示',
          content: '新版本已经准备好,是否重启应用?',
          success: (res) => {
            if (res.confirm) {
              // 新的版本已经下载好,调用 applyupdate 应用新版本并重启
              updatemanager.applyupdate();
            } else if (res.cancel) {
              return false;
            }
          }
        })
      })
      updatemanager.onupdatefailed(() => {
        // 新的版本下载失败
        wx.hideloading();
        wx.showmodal({
          title: '升级失败',
          content: '新版本下载失败,请检查网络!',
          showcancel: false
        });
      });
    }

本文标签: 版本