有谁写过版本更新?微信小程序更新机制线上没有生效
微信小程序强制更新机制没有生效,在开发者工具模拟更新测的时候是生效了的,因为体验版和测试版小程序官方说测试不了,
线上版本更新了也没有生效
哪位大佬帮我看看哪里写的有问题
在app.js里面
onLaunch: function(options) {
//兼容
if (compareVersion(version, ‘1.9.90’) >= 0) {
this.checkForUpdateApp(); //1.9.90支持
}
}
checkForUpdateApp() {
const updateManager = wx.getUpdateManager()
updateManager.onCheckForUpdate(function (res) {
// 请求完新版本信息的回调
console.log(res.hasUpdate)
})
updateManager.onUpdateReady(function () {
wx.showModal({
title: ‘更新提示’,
content: ‘新版本已经准备好,是否重启应用?’,
success(res) {
if (res.confirm) {
updateManager.applyUpdate()
}
}
})
})
updateManager.onUpdateFailed(function () {
// 新版本下载失败
})
},
