作者:罗丹灬_853 | 来源:互联网 | 2023-09-01 15:42
支付宝小程序调用更新提醒if(my.getUpdateManager){console.log(调用版本更新提醒);constupdateManagermy.getUpdateMa
支付宝小程序
// 调用更新提醒
if (my.getUpdateManager) {
console.log("调用版本更新提醒");
const updateManager = my.getUpdateManager();
updateManager.onCheckForUpdate(function (res) {
// 请求完新版本信息的回调
if (res.hasUpdate) {
updateManager.onUpdateReady(function () {
uni.showModal({
title: "更新提示",
content: "新版本已经准备好,是否重启应用?",
success: function (result) {
if (result.confirm) {
updateManager.applyUpdate();
}
},
});
});
// 更新小程序失败
updateManager.onUpdateFailed(function () {
// 新的版本下载失败
uni.showModal({
title: "已经有新版本了哟~",
content: "新版本已经上线啦~,请您删除当前小程序,重新搜索打开哟~",
});
});
}
});
}
微信小程序
// 调用更新提醒
if (wx.canIUse("getUpdateManager")) {
const updateManager = wx.getUpdateManager();
updateManager.onCheckForUpdate(function(res) {
// 请求完新版本信息的回调
if (res.hasUpdate) {
updateManager.onUpdateReady(function() {
wx.showModal({
title: "更新提示",
content: "新版本已经准备好,是否重启应用?",
success: function(res) {
if (res.confirm) {
updateManager.applyUpdate();
}
},
});
});
// 更新小程序失败
updateManager.onUpdateFailed(function() {
// 新的版本下载失败
wx.showModal({
title: "已经有新版本了哟~",
content: "新版本已经上线啦~,请您删除当前小程序,重新搜索打开哟~",
});
});
}
});
}
本想把生活活成一首诗, 时而优雅 , 时而豪放 , 结果活成了一首歌 , 时而不靠谱 , 时而不着调