我的代码是这样写的,在app.js内,但是每次版本更新后 这个方法无效,还是之前的老版本。
onLaunch() {
if (wx.canIUse('getUpdateManager')) { // 判断当前微信版本是否支持版本更新
const updateManager = wx.getUpdateManager();
updateManager.onCheckForUpdate((res) => {
if (res.hasUpdate) { // 请求完 新版本信息的回调
updateManager.onUpdateReady(() => {
updateManager.applyUpdate()
})
}
})
updateManager.onUpdateFailed(() => {
wx.showModal({
title: '已经有新版本了哟~',
content: '新版本已经上线啦~,请您删除当前小程序,重新搜索打开哟~'
})
})
} else {
wx.showModal({
title: '提示',
content: '当前微信版本过低,无法使用该功能,请升级到最新微信版本后重试'
})
}
},
});