我正在开发一个移动应用程序,它使用QR码扫描程序。我使用以下代码http://dwa012.github.io/html5-qrcode/
。根据“自述”文件中的说明。我有以下代码。
<div class="center" id="reader" style="width:300px;height:250px;">
<script type="text/javascript">
$('#reader').html5_qrcode(function(data){
// do something when code is read
},
function(error){
//show read errors
}, function(videoError){
//the video stream could be opened
}
);
</script>
</div>
但我没有得到输出,它没有打开网络摄像头。 请帮助我找到出错的地方。