Loading... ```js /** * 检测当前的小程序 * 是否是最新版本,是否需要下载、更新 */ const checkUpdateVersion = () => { // #ifdef MP-WEIXIN //创建 UpdateManager 实例 const updateManager = wx.getUpdateManager() //检测版本更新 updateManager.onCheckForUpdate(function(hasRes) { // 请求完新版本信息的回调 if (hasRes.hasUpdate) { //监听小程序有版本更新事件 updateManager.onUpdateReady(function() { wx.showModal({ title: '更新提示', content: '新版本已经准备好,是否重启应用?', success(res) { if (res.confirm) { // 新的版本已经下载好,调用 applyUpdate 应用新版本并重启 updateManager.applyUpdate() } } }) }) updateManager.onUpdateFailed(function() { // 新版本下载失败 wx.showModal({ title: '新版本更新失败', content: '1. 从最近使用中拖动小程序添加到我的小程序中 -> 2. 从最近使用中拖动小程序到底部删除当前小程序 -> 3. 从我的小程序中重新打开(或到微信 “发现-小程序” 页,重新搜索打开)完成更新', }) }) } }) // #endif } ``` 最后修改:2023 年 12 月 13 日 © 允许规范转载 赞 如果觉得我的文章对你有用,请随意赞赏