uniapp 监听更新升级情况

放在App.vue的onShow里:

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: "知道了"
});
});


uniapp 监听更新升级情况
https://github.com/chergn/chergn.github.io/40eb1461f21f/
作者
全易
发布于
2024年3月28日
许可协议