获得过 0 次赞
回答过的问题获得 0 次赞
分享过的文章/案例获得 0 次赞
评论与回复获得 0 次赞
也就是说,版本更新放在onLaunch里面后,只有代码没有来得及自动更新的才会提示用户更新吗
小程序版本更新updateManage接口触发不了?我放在onLaunch里,有时能触发。const updateManager = wx.getUpdateManager(); // 获取更新管理器对象 updateManager.onCheckForUpdate(function (res) { console.log(res) if (res.hasUpdate) { updateManager.onUpdateReady(function () { wx.showModal({ title: '更新提示', content: '新版本已经准备好,点击确定重新启动', showCancel: false, success: res => { if (res.confirm) { updateManager.applyUpdate(); } } }) }) }) })
2022-04-01