我在阅读二维码时如何在浏览器中关闭相机?

时间:2014-06-04 08:49:02

标签: javascript jquery angularjs web-applications qr-code

首先抱歉我的英语。

嗯,我的问题是这个。我在我的WebApp中使用this library来读取QR码。我的QR码包含我的应用程序的其他部分的链接,但当它重定向我时,相机没有关闭,因为(我认为)使用AngularJS路线。我的问题是,当我重定向我时,我如何强制重新加载页面?通过这种方式,相机将关闭。

这是我打开cámera并阅读QR的代码:

        app.controller("ReadQRCtrl", function() {
          $(document).ready(function() {
            $('#reader').html5_qrcode(function(data) {
                 window.location.href ="http://localhost/SCTraker/Application/appIndex#/"+data;
            },
            function(error) {
                 console.log(error);
            }, function(videoError) {
                 console.log(videoError);
            }
         );
      });
  });

1 个答案:

答案 0 :(得分:0)

解决!!这是一个库的错误,我将库上传到我的GitHub:https://github.com/emilioxiri/html5_qrcode