const updateManager = wx.getUpdateManager()
updateManager.onCheckForUpdate(function (res) {
})
updateManager.onUpdateReady(function () {
wx.showModal({
title: '更新提示',
content: '新版本已经准备好,request 合法域名 怎么使用http开头的api吗?。需重启应用',
showCancel: false,
success: function (res) {
if (res.confirm) {
updateManager.applyUpdate()
}
}
})
})
线上新版本审核发布后,微信小程序执行到上面代码中的wx.showModal时,ios出现弹窗弹出后秒关问题,导致版本无法及时更新!
而Android机更新正常!
本文来自微信小程序开发者论坛 微信小程序工厂 http://www.xcxgc.com 转载请保留。
微信小程序开发者回答:
范***:
你这个问题解决了吗?我也遇到了,Android的正常,iOS就是闪一下就过去了
E***:
并未解决,官方还未回复~~~
使用getPhoneNumber相关问题,微信小程序开发
本文网址:http://www.91bianli.com/weixinxiaochengxu/58393.html