赞
踩
onShow: function () {
let supportGetUpdateManager = uni.canIUse("getUpdateManager");
if (!supportGetUpdateManager) {
return;
} else {
let updateManager = uni.getUpdateManager();
if (!updateManager) {
return;
} else {
updateManager.onCheckForUpdate(function (res) {
if (res.hasUpdate) {
updateManager.onUpdateReady(function () {
uni.showModal({
title: "更新提示",
content: "新版本已经准备好,是否重启应用?",
success: function (res) {
if (res.confirm) {
updateManager.applyUpdate();
} else {
uni.showModal({
title: "更新提示",
content: "您取消了更新,新版本已经上线啦~,请您删除当前小程序,到微信 “发现-小程序” 页,重新搜索打开哦~",
});
}
},
});
});
updateManager.onUpdateFailed(function () {
uni.showModal({
title: "已经有新版本了哟~",
content: "新版本已经上线啦~,请您删除当前小程序,到微信 “发现-小程序” 页,重新搜索打开哦~",
});
});
} else {
// 提示用户新版本信息或者进行其他操作
}
});
}
}
},
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。