获得过 0 次赞
回答过的问题获得 0 次赞
分享过的文章/案例获得 0 次赞
评论与回复获得 0 次赞
o
wx.getUpdateManager在小程序ios始终获取都是false,Android正常?描述:正式环境版本更新发布后,使用wx.getUpdateManager在Android手机的微信小程序正常提示及更新,ios手机的小程序使用始终获取都是false,无法正常提示更新,这是什么情况? 代码:在全局onShow中加的 const updateManager = wx.getUpdateManager(); updateManager.onCheckForUpdate(function(res) { // 请求完新版本信息的回调 console.log("更新提示--", res.hasUpdate); ); updateManager.onUpdateReady(function(res) { wx.showModal({ title: '更新提示', content: '新版本已经准备好,是否重启应用?', success(res) { if (res.confirm) { // 新的版本已经下载好,调用 applyUpdate 应用新版本并重启 updateManager.applyUpdate(); } } }); }); updateManager.onUpdateFailed(function(res) { // 新的版本下载失败 // 新版本下载失败 wx.showModal({ title: '更新失败', content: '请退出并移除小程序,重新打开', }) });
2023-10-10