前端二维码扫描库html5-qrcode使用(据说已不能用)
·
最新更新:
本文首发是在2017年,当时这个库是可以用的。现在据网友评论好像已经不可以用了,所以大家还是跳过吧,或者去库的官网看看有没有最新更新。
####本文介绍前端二维码扫描库html5-qrcode的使用。
####一、库文档及源码
https://github.com/dwa012/html5-qrcode
####二、引入库文件
需要引入的库文件如下:
####三、创建容器
<div id="reader" style="width:300px;height:250px">
</div>
注意:这里必须指定容器大小。
####四、扫描处理函数实现
$('#reader').html5_qrcode(function(data){
// do something when code is read
alert(data);
},
function(error){
//show read errors
alert(error);
}, function(videoError){
//the video stream could be opened
alert(videoError);
}
);
更多推荐
已为社区贡献3条内容
所有评论(0)