当前位置:   article > 正文

微信小程序 - 小程序版本更新处理_小程序wx.getupdatemanager 怎么测试

小程序wx.getupdatemanager 怎么测试

1. 在 app.js 文件中加入方法:

// 校验更新
hasNewBanben() {
    console.log('校验更新')
    //判断微信版本是否 兼容小程序更新机制API的使用
    if (wx.canIUse('getUpdateManager')) {
      const updateManager = wx.getUpdateManager();
      updateManager.onCheckForUpdate((res1) => {
        if (res1.hasUpdate) {
          updateManager.onUpdateReady(function () {
            wx.showModal({
              title: '更新提示',
              content: '新版本已经准备好,是否重启应用?',
              success: function(res) {
                // todo 做一些操作,比如说清除 Storage 缓存等
                updateManager.applyUpdate();
              }
            })
            console.log('正在更新中......')
          })
          updateManager.onUpdateFailed(function () {
          	// todo 做一些操作,比如说清除 Storage 缓存等
            // 新版本下载失败
            wx.showModal({
              title: '已经有新版本呦~',
              content: '请您删除当前小程序,到微信 “发现-小程序” 页,重新搜索打开哦~',
            })
          })
        }
      })
    } else {
      // todo 做一些操作,比如说清除 Storage 缓存等
      // 此时微信版本太低(一般而言版本都是支持的)
      wx.showModal({
        title: '溫馨提示',
        content: '当前微信版本过低,请升级到最新微信版本后重试。'
      })
    }
  }
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38

2. 在 app.js 中的 onLaunch 调用1中方法即可:

this.hasNewBanben() // 校验小程序版本
  • 1
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/天景科技苑/article/detail/1017294
推荐阅读
相关标签
  

闽ICP备14008679号