扫描条形码问题
https://developers.weixin.qq.com/s/tu0jdmmE75Ra IOS 和 安卓 手机扫描条形码 1 使用预览功能 IOS扫出结果跟安卓扫描结果一样。 真机调试功能扫码 IOS出现乱码与安卓扫描结果不同 发布到线上 也是有问题 [图片] wx.scanCode({ success: (e) => { console.log(e) console.log(e.result); let reg = /SM\-[0-9]+$/ console.log(e.result.match(reg), '匹配'); let match = e.result.match(reg); console.log(match,'match'); }, fail: (e) => { console.log(e); console.log('扫码失败'); }, complete: (e) => { } }); }, https://developers.weixin.qq.com/s/tu0jdmmE75Ra