uniapp h5扫码
时间: 2023-12-16 21:06:20 浏览: 119
UniApp 内嵌 H5 调用扫码
以下是uniapp h5扫码的代码示例:
```javascript
checksaosao(){
//兼容h5的扫码页面
/*#ifdef H5*/
uni.$u.route(`/pages/my/saoma`)
return;
/*#endif*/
uni.scanCode({
success: function (res) {
console.log('条码类型:' + res.scanType);
console.log('条码内容:' + res.result);
let { type, uid, } = JSON.parse(res.result);
console.log(type,uid);
if(type){ //扫码成功跳转输入金额页面
uni.$u.route(`/pages/my/amountEntered`, { uid: uid, type:type, })
}else{
uni.$u.toast('未识别到二维码,请重新尝试!')
}
}
})
}
```
阅读全文