我也遇到该问题,iPhone和安卓部分机型均能复现。公众号页面,不是通过web-view嵌套页面的。详情见:https://developers.weixin.qq.com/community/develop/doc/0000c20f6242e8c44cd11634b6b400。请问有人知道怎么解决吗
wx.config在ios上有时无响应?wx.config在ios上有时注入成功,并触发了ready回调,但是有时候既不触发ready回调也不触发error回调? const config = { debug: true, appId: data.appId, timestamp: data.timestamp, nonceStr: data.nonceStr, signature: data.signature, jsApiList: ['scanQRCode', 'closeWindow', 'chooseImage', 'previewImage', 'startRecord', 'stopRecord', 'onVoiceRecordEnd', 'translateVoice',], } wx.config(config) wx.ready(function () { console.log('成功1') resolve() }) wx.error(function (res) { console.error(res) reject(res) })
07-16