之前安卓还有过更新提示,最近几个版本突然没有了,只有ios有,代码是没有变更过的。想问问官方这边是否有什么调整吗?
代码如下:
if (wx.canIUse('getUpdateManager')) {
const updateManager = wx.getUpdateManager()
updateManager.onCheckForUpdate(function (res) {
console.log(res, '是否需要更新')
// 请求完新版本信息的回调
if (res.hasUpdate) {
updateManager.onUpdateReady(function () {
console.log('更新提示')
wx.showModal({
title: '更新提示',
content: '新版本已经准备好,是否重启应用?',
success: function (res) {
console.log('success====', res)
// res: {errMsg: "showModal: ok", cancel: false, confirm: true}
if (res.confirm) {
// 新的版本已经下载好,调用 applyUpdate 应用新版本并重启
updateManager.applyUpdate();
uni.clearStorageSync();
uni.setStorageSync('startTime',new Date().getTime())
}
}
})
})
updateManager.onUpdateFailed(function () {
// 新的版本下载失败
wx.showModal({
title: '已经有新版本了哟~',
content: '新版本已经上线啦~,请您删除当前小程序,重新搜索打开小程序~'
})
})
}
})
}
目前公司里的同事所有安卓用户都不行,应该不是机型的问题了吧,ios的都可以看到。
8.0.15修复了,可以试试看
https://weixin.qq.com/cgi-bin/readtemplate?lang=zh_CN&t=page/faq/android/8015/index&faq=android_8015
+1
+1