源码
wx.scanCode({
// scanType: ['barCode'],
success(res) {
that.setData({
scanCode: res.result
})
that.getScanBookList() //请求函数
},
fail(res){
wx.showToast({ icon: 'none', title:"扫码出错了,请重试"})
console.log(res)
}
})
一本书的一维码,真机扫码,偶尔code会是错误的isbnCode=794530331610,正确结果应该是isbnCode=9787540331610 。
在开发工具扫码,直接失败,走了fail,"scanCode:fail"
很多书会出现相同的问题,求解。。。。救命!!在线等。。。。
你好,这个问题可以参考一下
微信小程序扫一扫, 扫描条形码出现与条形码信息不符
https://developers.weixin.qq.com/community/develop/doc/000662f1680c3845fb683d1315b400
所以两个月了,还没修复么
目前还没有,出错的时候可以多扫几次码试试
wx.scanCode({
// scanType: ['barCode'],
success:function(res) {
that.setData({
scanCode: res.result
})
that.getScanBookList() //请求函数
},
fail:function(res){
wx.showToast({ icon: 'none', title:"扫码出错了,请重试"})
console.log(res)
}
})
???