安卓正常,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);
});
}
打包的h5页面,在浏览器和开发者工具里使用都正常。 但在微信小程序原生的web-view里,真机鸿蒙系统和部分安卓下无法唤起选择弹框(鸿蒙最初的2.0.0还是可以的,最近更新到了2.0.0.230就不行了)。无论是使用uni.chooseImage、还是uni-file-picker,都没反应。 请问是什么原因?该如何解决?
请问现在问题解决了吗?我这边也遇到了相同的问题,如果使用input,有些ios手机又闪退,现在陷入两难境地。
你好,按照这里的提示检查下https://developers.weixin.qq.com/doc/offiaccount/OA_Web_Apps/JS-SDK.html
微信版本7.0.15,手机型号iPone 6s ios 13.3