关于javascript:IOS调用微信扫一扫scanQRCode报错the-permission-value-is-offline-verifying

60次阅读

共计 1215 个字符,预计需要花费 4 分钟才能阅读完成。

问题

ios 调用微信扫一扫 scanQRCode 报错 the permission value is offline verifying

document.getElementById("scanQRCode").onclick = function() {
  wx.scanQRCode({
    needResult: 1, // 默认为 0,扫描后果由微信解决,1 则间接返回扫描后果
    success: function(res) {alert("234");
      let data = res.resultStr; // 当 needResult 为 1 时,扫码返回的后果
      alert(data);
      alert(res.resultStr);
      window.open(data);
      // 解决本人的逻辑
    }
  });
};

这种写法写在 wx.ready 里就会报错 the permission value is offline verifying, 安卓下能够调用

根本解决办法

the permission value is offline verifying 这个谬误是因为 config 没有正确执行,或者是调用的 JSAPI 没有传入 config 的 jsApiList 参数中。倡议按如下程序查看:

1. 确认 config 正确通过。

2. 如果是在页面加载好时就调用了 JSAPI,则必须写在 wx.ready 的回调中。

3. 确认 config 的 jsApiList 参数蕴含了这个 JSAPI。

4. 调用

 let _data = data.data.jsapi;
  wx.config({
    debug: false,
    appId: _data.appId,
    timestamp: _data.timestamp,
    nonceStr: _data.nonceStr,
    signature: _data.signature,
    jsApiList: ['scanQRCode']
  });
  wx.scanQRCode({
    desc: 'scanQRCode desc',
    needResult: 1, // 默认为 0,扫描后果由微信解决,1 则间接返回扫描后果,scanType: ['barCode'], // 能够指定扫二维码还是一维码,默认二者都有
    success: function (res) {alert(res.resultStr);
    }
  });

最终解决办法

当以上这些都没有问题,created 里调的接口, 分享的接口都通了,扫一扫的也是通的。我加了 ”checkJsApi” 返回 scanQRCode:true, 然而还有有 scanQRCode:the permission value is offline verifying 的报错

地址栏问题:push 的跳转不能被写入 ios 微信浏览器的地址栏

解决:push 跳转改为 window.loaction.href 跳转 ;window.loaction.href 跳转能力扭转地址栏的变动,能力签名胜利

IOS 调用微信扫一扫 scanQRCode 报错 the permission value is offline verifying

正文完
 0