苹果手机 wx.scanCode 无法识别小程序码
代码片段: wx.scanCode({
onlyFromCamera: true,
scanType: ["qrCode"],
success: res => {
const path = res.path;
const scanType = res.scanType;
if ("WX_CODE" !== scanType) {
uni.showToast({
title: "设备码不正确"
});
return;
}
// ......
console.log("path: ", path);
}
});
小程序点击扫码按钮,调用扫码接口,将相机对准小程序码...无反应 [图片] 预期表现: 小程序码识别成功! 实际表现: 无任何反应