wx.scanCode({
success(res) {
wx.showLoading({
title: '加载中',
icon: 'loading'
})
let scanCode = res.result;
console.log(scanCode);---此处log打印全部为null
if (scanCode == null) {
wx.showToast({
title: "扫码失败",
icon: 'none',
duration: 1500
})
return
}
这个问题 只有图片上面的手机型号出现。 其他手机都没有。 有没有能提供下解决办法?
用微信自带的扫一扫 可以成功扫到二维码内容。 但是小程序里面去扫一扫就返回null
你好,麻烦提供出现问题的具体机型、微信版本号、系统版本号、扫码的二维码,以及能复现问题的代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)
小米Mix2
微信7.0.12
安卓7.0
微信基础库2.10.4
代码片段
wx.scanCode({
success(res) {
wx.showLoading({
title: '加载中',
icon: 'loading'
})
let scanCode = res.result;
console.log(scanCode);---此处log打印全部为null
if (scanCode == null) {
wx.showToast({
title: "扫码失败",
icon: 'none',
duration: 1500
})
return
}
}
}
小程序代码适配机型