问题模块 框架类型 问题类型 API/组件名称 终端类型 微信版本 基础库版本
API和组件 微信小程序 Bug wx.getUpdateManager 客户端 6.7.2 2.3.0
const updateManager = wx.getUpdateManager()
updateManager.onCheckForUpdate(function (res) {
// 请求完新版本信息的回调
if (res.hasUpdate) {
updateManager.onUpdateReady(function () {
wx.showModal({
title: '更新提示',
content: '新版本已经准备好,是否重启应用?',
success: function (res) {
if (res.confirm) {
// 新的版本已经下载好,调用 applyUpdate 应用新版本并重启
updateManager.applyUpdate()
}
}
})
})
}
iOS更新时,showModal提示框闪一下就消失了,导致没有立即更新。安卓没有问题。。
请问各路大神有遇到过吗?怎么解决。。。
微信小程序开发问题解答
微信小程序开发者回答:
这个我以前也遇到过,你检查一下是不是在什么地方用了wx.hideloding
微信小程序开发者回答:
没有用呀,你遇到的这个问题现在解决了吗
微信小程序开发者回答:
解决了的,我在其他地方使用了隐藏弹窗事件
本文网址:http://www.91bianli.com/weixinxiaochengxu/45921.html