【小程序】微信小程序 版本强制更新,检测到新版本重启小程序
微信小程序 版本强制更新,检测到新版本重启小程序
闫雪发布于 39 分钟前
修改app.js 的 onLaunch
方法
//app.jsApp({
onLaunch: function () {
// 版本自动更新代码
const updateManager = wx.getUpdateManager()
updateManager.onCheckForUpdate(function (res) {
console.log(res.hasUpdate)
})
updateManager.onUpdateReady(function () {
wx.showModal({
title: '更新检测',
content: '检测到新版本,是否重启小程序?',
success: function (res) {
if (res.confirm) {
// 新的版本已经下载好,调用 applyUpdate 应用新版本并重启
updateManager.applyUpdate()
}
}
})
})
updateManager.onUpdateFailed(function () {
// 新的版本下载失败
wx.showModal({
title: '已有新版本咯',
content: '请您删除当前小程序,到微信 “发现-小程序” 页,重新搜索“天助定餐饮”打开呦~',
showCancel: false
})
})
}
})
本地测试,新建编译条件,关键是测试版本更新的时候每次都要勾选“下次编译时模拟更新”
即可。
版本更新小程序
阅读 31发布于 39 分钟前
本作品系原创,采用《署名-非商业性使用-禁止演绎 4.0 国际》许可协议
闫雪
9 声望
5 粉丝
闫雪
9 声望
5 粉丝
宣传栏
目录
修改app.js 的 onLaunch
方法
//app.jsApp({
onLaunch: function () {
// 版本自动更新代码
const updateManager = wx.getUpdateManager()
updateManager.onCheckForUpdate(function (res) {
console.log(res.hasUpdate)
})
updateManager.onUpdateReady(function () {
wx.showModal({
title: '更新检测',
content: '检测到新版本,是否重启小程序?',
success: function (res) {
if (res.confirm) {
// 新的版本已经下载好,调用 applyUpdate 应用新版本并重启
updateManager.applyUpdate()
}
}
})
})
updateManager.onUpdateFailed(function () {
// 新的版本下载失败
wx.showModal({
title: '已有新版本咯',
content: '请您删除当前小程序,到微信 “发现-小程序” 页,重新搜索“天助定餐饮”打开呦~',
showCancel: false
})
})
}
})
本地测试,新建编译条件,关键是测试版本更新的时候每次都要勾选“下次编译时模拟更新”
即可。
以上是 【小程序】微信小程序 版本强制更新,检测到新版本重启小程序 的全部内容, 来源链接: utcz.com/a/111534.html
得票时间