微信小程序版本检查更新官网api: https://developers.weixin.qq.com/miniprogram/dev/api/base/update/wx.getUpdateManager.html
app.js
123456789101112131415161718192021222324252627282930onShow : function() { this.checkForUpdate()},// 检查版本更新checkForUpdate(){ wx.getUpdateManager().onCheckForUpdate(res => { console.log('请求版本更新信息',res); if (res.hasUpdate) { // 新版本下载成功 wx.getUpdateManager().onUpdateReady(() => { wx.showModal({ title: & ...