无法使用Cordova打开前置摄像头

时间:2018-03-12 13:21:23

标签: javascript cordova

我已完成应用程序的所有部分,现在我需要使用前置摄像头扫描而不是后置摄像头,但是有打开它的问题。

这是相机的脚本。

    function scanTrivago()
{
    cordova.plugins.barcodeScanner.scan(
        function (result) {
            if(!result.cancelled)
            {
                trivagoNumber(result.text);
                path="/confirm-checkin-1/";
        //    alert("Barcode type is: " + result.format);
        //    alert("Decoded text is: " + result.text);
            }
            else
            {
                trivagoNumber(result.text);
              path="/check-in/";
            }
        },

        function (error) {
          alert("Scanning failed: " + error);
        }
    );
}

我完全使用此网站的功能https://www.sitepoint.com/scanning-qr-code-cordova/,一切都可以正常使用我的简单javascript,但无法将相机切换到前面。

1 个答案:

答案 0 :(得分:1)

plugin docs on github有一个更好的使用示例,包括preferFrontCamera选项:

  

一个完整的例子可能是:

   cordova.plugins.barcodeScanner.scan(
      function (result) {
          alert("We got a barcode\n" +
                "Result: " + result.text + "\n" +
                "Format: " + result.format + "\n" +
                "Cancelled: " + result.cancelled);
      },
      function (error) {
          alert("Scanning failed: " + error);
      },
      {
          preferFrontCamera : true, // iOS and Android
          showFlipCameraButton : true, // iOS and Android
          showTorchButton : true, // iOS and Android
          torchOn: true, // Android, launch with the torch switched on (if available)
          saveHistory: true, // Android, save scan history (default false)
          prompt : "Place a barcode inside the scan area", // Android
          resultDisplayDuration: 500, // Android, display scanned text for X ms. 0 suppresses it entirely, default 1500
          formats : "QR_CODE,PDF_417", // default: all but PDF_417 and RSS_EXPANDED
          orientation : "landscape", // Android only (portrait|landscape), default unset so it rotates with the device
          disableAnimations : true, // iOS
          disableSuccessBeep: false // iOS and Android
      }
   );