最新更新:
本文首发是在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);
	}
);
Logo

旨在为数千万中国开发者提供一个无缝且高效的云端环境,以支持学习、使用和贡献开源项目。

更多推荐