WeChat 애플릿 및 Alipay 자동 업데이트 버전

1. 공식 WeChat 문서 : 미니 프로그램의 새 버전이 출시 된 후 버전이 업데이트됩니다.

  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) {
    
    
         
        }
      })
    })
    }

2. Alipay 공식 문서 애플릿 새 버전 출시되면 버전이 자동으로 업데이트됩니다.

  //检查更新
    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