上传新版本审核 是不是上传设置的1.0.0版本号不能变 用户才能打开小程序就能自动更新
用这段代码检测更新
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()
}
}
})
})
}