1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
| 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) { updateManager.applyUpdate(); } } }); });
updateManager.onUpdateFailed(function(res) { uni.showModal({ title: '提示', content: '新版小程序下载失败\n请自行退出程序,手动卸载本程序,再运行', confirmText: "知道了" }); });
|