老用户(非第一次打开小程序),
1.点胶囊关闭小程序,再打开 未能更新
2.重新进入小程序 未能更新
3.重新扫码小程序 未能更新
4. 只有等到小程序销毁,或者说删除小程序。
因此,我只能直接在进入首页时,提示用户进行更新。
onLaunch: function() {
// #ifdef MP
const updateManager = uni.getUpdateManager();
updateManager.onCheckForUpdate(function (res) {
// 请求完新版本信息的回调
console.log(res.hasUpdate);
});
updateManager.onUpdateReady(function (res) {
uni.showModal({
title: '更新提示',
content: '新版本已经准备好,是否重启应用?',
success(res) {
if (res.confirm) {
// 新的版本已经下载好,调用 applyUpdate 应用新版本并重启
updateManager.applyUpdate();
}
}
});
});
updateManager.onUpdateFailed(function (res) {
// 新的版本下载失败
});
// #endif
}