有这个问题,可是好像没人管了
企业微信小程序偶发提示页面不存在?[图片] 偶发:目前只发现在苹果手机上 corpid:ww7cbc566559a5e717 应用agentid:1000038 appid:wx1fa0cb94a3a5cfeb , 成员id:WangFang 时间点:07-28 10:00 - 07:27 10:20
2023-03-07打包的h5页面,在浏览器和开发者工具里使用都正常。 但在微信小程序原生的web-view里,真机鸿蒙系统和部分安卓下无法唤起选择弹框(鸿蒙最初的2.0.0还是可以的,最近更新到了2.0.0.230就不行了)。无论是使用uni.chooseImage、还是uni-file-picker,都没反应。 请问是什么原因?该如何解决?
微信小程序中用web-view打开公众号,chooseImage无法弹出安卓正常,ios异常,报chooseimage:permission the value is offline verifying; window.onload = () => { getWXconfig(); } function getWXconfig() { var url = window.location.href.split('#')[0]; let token ='' let appid = ''; let baseUrl = '' axios.post(baseUrl + '/owechat/location/signature', {url: url}, {headers: {token}}).then(({data}) => { if (data.code === 1001) { wx.config({ debug: false, // 开启调试模式,调用的所有api的返回值会在客户端alert出来,若要查看传入的参数,可以在pc端打开,参数信息会通过log打出,仅在pc端时才会打印。 appId: appid, // 必填,公众号的唯一标识 timestamp: data.result .timestamp, // 必填,生成签名的时间戳 nonceStr: data.result .noncestr, // 必填,生成签名的随机串 signature: data.result .signature, // 必填,签名 jsApiList: [ 'chooseImage' ] // 必填,需要使用的JS接口列表 }); wx.ready((res) => { wx.chooseImage({ fail: (res) => { console.log(res); } }) }) } }).catch(function (error) { console.log(error); }); }
2022-07-07