在index.js里面
不放到app.js里面是因为有登录页面,在登录页面显示更新不太友好
onShow() {const updateManager = wx.getUpdateManager()// 请求完新版本信息的回调updateManager.onCheckForUpdate(res => {if (res.hasUpdate) {// 新版本下载成功updateManager.onUpdateReady(() => {wx.showModal({title: '更新提示',showCancel: false,content: '新版本已经准备好,点击确定重启小程序',success(res) {if (res.confirm) {// 新的版本已经下载好,强制更新updateManager.applyUpdate()}}})})}})// 新版本下载失败updateManager.onUpdateFailed(res => {// console.error(res)// 下载新版本失败wx.showModal({title: '更新失败',content: '新版本更新失败,请手动删除当前小程序,重新搜索打开',})})
}
在小程序测试的时候需要添加编译模式才可以模拟版本更新,发布到正式版本自动生效
点了确定就会自动刷新页面