https://developers.weixin.qq.com/miniprogram/dev/api/device/scan/wx.scanCode.html
在tabbar中调用wx.scanCode 扫一扫功能,扫描成功,页面跳转后,后还会再调用一次wx.scanCode,扫描成功后扫描框才消失。
onShow:function(){
wx.scanCode({
success: (res) => {
console.log("****成功*****")
wx.redirectTo({
url: ‘/pages/logs/logs’
})
},
fail:function(){
console.log("****失败***");
wx.redirectTo({
url: ‘’
})
}
})
},
你好,麻烦提供出现问题的具体机型、微信版本号、系统版本号,以及能复现问题的代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)