首先抱歉我的英语。
嗯,我的问题是这个。我在我的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);
}
);
});
});