上传新版本审核 是不是上传设置的1.0.0版本号不能变 用户才能打开小程序就能自动更新?
发布于 7 年前 作者 yangpeng 8184 次浏览 来自 官方Issues

上传新版本审核 是不是上传设置的1.0.0版本号不能变 用户才能打开小程序就能自动更新

4 回复

要自动更新得调用api更新,其余的都是不确定性更新的

用这段代码检测更新

if (wx.getUpdateManager) {

      const updateManager = wx.getUpdateManager()

      updateManager.onCheckForUpdate(function (res) {

      })

      updateManager.onUpdateReady(function () {

        updateManager.applyUpdate()

        wx.showModal({

          title: ‘更新提示’,

          content: ‘新版本已下载完成,是否重启更新?’,

          success: function (res) {

            if (res.confirm) {

              updateManager.applyUpdate()

            }

          }

        })

      })

    }

描述不是很清楚,版本号不能变?。更新有对应的API的。文档有

回到顶部