使用html5-qrcode 扫描二维码(vue3)
/* Your code... */
<script>
import { Html5Qrcode } from "html5-qrcode";
export default {
name: 'HelloWorld',
props: {
msg: String
},
mounted(){
console.log('hello...');
this.getCameras();
},
methods:{
getCameras() {
Html5Qrcode.getCameras()
.then((devices) => {
/**
* devices would be an array of objects of type:
* { id: "id", label: "label" }
*/
//alert(JSON.stringify(devices));
if (devices && devices.length) {
this.cameraId = '';
for(let device of devices) {
if(device.label.toLowerCase().indexOf('back')>-1){
this.cameraId = device.id;
}
}
if(!this.cameraId){
this.cameraId = devices[0].id;
}
}
this.devices = devices;
this.start();
// .. use this to start scanning.
})
.catch((err) => {
// handle err
console.log(err); // 获取设备信息失败
});
},
start() {
const html5QrCode = new Html5Qrcode("reader");
html5QrCode
.start(
this.cameraId, // retreived in the previous step.
{
fps: 10, // sets the framerate to 10 frame per second
qrbox: { width: 250, height: 250 }, // sets only 250 X 250 region of viewfinder to
// scannable, rest shaded.
},
(decodedText, decodedResult) => {
// do something when code is read. For example:
// if (qrCodeMessage) {
// this.getCode(qrCodeMessage);
// this.stop();
// }
console.log(decodedText);
console.log(decodedResult);
alert(decodedText);
},
(errorMessage) => {
// parse error, ideally ignore it. For example:
// console.log(`QR Code no longer in front of camera.`);
console.log(errorMessage);
}
)
.catch((err) => {
// Start failed, handle it. For example,
console.log(`Unable to start scanning, error: ${err}`);
});
},
stop() {
this.html5QrCode
.stop()
.then((ignore) => {
// QR Code scanning is stopped.
console.log("QR Code scanning stopped.");
})
.catch((err) => {
// Stop failed, handle it.
console.log("Unable to stop scanning.");
});
},
}
}
</script>
============ 欢迎各位老板打赏~ ===========
与本文相关的文章
- · 微信小程序开发中,通过API生成的体验版短链接,打开跳转到的是生产版
- · Nest.js 、 Next.js、 Nuxt.js的区别
- · 小程序可以绑定其它小程序吗?
- · vue3+vite+多环境发面到二级目录配置
- · 微信小程序防止事件穿透防止事件冒泡
- · 普通链接二维码跳转小程序
- · 解决flex-direction: column 之后元素宽度自动变为100%
- · vue/react/node/vite/npm/yarn build自动更新版本号
- · getVisitDistribution 访问来源定义(访问来源 key 对应关系)
- · TinyMCE工具栏配置详解
- · Ant Design Vue 1.7.8 (vu2)自定义路由菜单图标
- · vue获取节点的父节点、兄弟节点、子节点
