微信小程序与支付宝自动更新版本

一、微信官方文档:小程序新版本上线后版本更新

  onLaunch: function () {
    
    
    const updateManager = wx.getUpdateManager()
    updateManager.onCheckForUpdate(function (res) {
    
    
      // 请求完新版本信息的回调
      console.log(res)
    })
    updateManager.onUpdateReady(function () {
    
    
      wx.showModal({
    
    
        title: '更新提示',
        content: '新版本已经准备好,是否重启应用?',
        success(res) {
    
    
          if (res.confirm) {
    
    
            // 新的版本已经下载好,调用 applyUpdate 应用新版本并重启
            updateManager.applyUpdate()
          }
        }
      })
    })
    
    updateManager.onUpdateFailed(function () {
    
    
      // 新版本下载失败
       wx.showModal({
    
    
        title: '温馨提示',
        content: '新版本下载失败,手动删除小程序重新搜索.',
        success(res) {
    
    
         
        }
      })
    })
    }

二、支付宝官方文档小程序新版本上线后版本自动更新

  //检查更新
    const updateManager = my.getUpdateManager()
    updateManager.onCheckForUpdate(function (res) {
    
    
      // 请求完新版本信息的回调
      console.log(res.hasUpdate)
    })
    updateManager.onUpdateReady(function () {
    
    
      my.confirm({
    
    
        title: '更新提示',
        content: '新版本已经准备好,是否重启应用?',
        success: function (res) {
    
    
          if (res.confirm) {
    
    
            // 新的版本已经下载好,调用 applyUpdate 应用新版本并重启
            updateManager.applyUpdate()
          }
        }
      })
    })
    updateManager.onUpdateFailed(function () {
    
    
      // 新版本下载失败
    })

猜你喜欢

转载自blog.csdn.net/men_gqi/article/details/113997004