如何在iOS的UIWebview中允许使用相机

时间:2019-05-10 16:28:40

标签: ios html5 camera uiwebview

我无法在uiwebview中显示相机,从而无法打开具有html5 QR码扫描功能的页面

我尝试在Safari中加载页面,并且可以正常运行,只是在我的应用程序的uiwebview中不起作用。

这是网页脚本:

<h1>JQuery HTML5 QR Code Scanner using Instascan JS Example</h1>

<video id="preview"></video>
<script type="text/javascript">
  let scanner = new Instascan.Scanner({ video: document.getElementById('preview') });
  scanner.addListener('scan', function (content) {
    alert(content);
  });
  Instascan.Camera.getCameras().then(function (cameras) {
    if (cameras.length > 0) {
      scanner.start(cameras[0]);
    } else {
      console.error('No cameras found.');
    }
  }).catch(function (e) {
    console.error(e);
  });
</script>

在uiwebview内的页面上仅显示h1文本,页面的其余部分为纯白色,没有警告,或者询问我是否要允许使用摄像头等。

是否有允许摄像头的方法或“解决”此问题的方法?还是可以在uiwebview中使用的替代Web解决方案?

此外,在Safari中,它使用前置摄像头,而我想将其用作后置摄像头。我尝试将start.cameras(cameras [0])数组元素更改为1,但它仍然开始在前面。

0 个答案:

没有答案