微信小程序检测更新

  • Post author:
  • Post category:小程序




1、app.js onShow调用即可

 checkUpdate(){
    if(wx.canIUse('getUpdateManager')){
      const updateManager = wx.getUpdateManager();
      updateManager.onCheckForUpdate(function (res) {
        if (res.hasUpdate) {
          updateManager.onUpdateReady(function () {
            updateManager.applyUpdate();
          })
          updateManager.onUpdateFailed(function () {
            wx.showModal({
              title: '更新提示',
              content: '新版本已上线,请删除当前小程序,重新搜索打开~'
            })
          })
        }
      })
    }
  },



版权声明:本文为qq_41271393原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。