https://developers.weixin.qq.com/miniprogram/dev/api/base/update/UpdateManager.html
最近上传新的小程序版本后不会自动检查版本更新了代码如下
app.js
onShow() {
const updateManager = wx.getUpdateManager()
updateManager.onCheckForUpdate(function (res) {
// 请求完新版本信息的回调
console.log(res.hasUpdate)
})
updateManager.onUpdateReady(function () {
wx.showModal({
showCancel:false,
title: '更新提示',
content: '新版本已经准备好,确定以更新',
success: function (res) {
if (res.confirm) {
// 新的版本已经下载好,调用 applyUpdate 应用新版本并重启
updateManager.applyUpdate()
}
}
})
})
updateManager.onUpdateFailed(function () {
// 新版本下载失败
})
},
在最新版本才带了这个检查的话,旧版本没有这个代码就不会触发提示
你看看热更新和冷更新