如何在 phonegap 构建中从条形码扫描仪打开 url

how to open a url from the barcode scanner in phonegap build

我正在使用条形码扫描器构建 phonegap,我将如何检索二维码 URL 数据并将网页显示到 Iframe 或 div

$(document).ready(function(e) {
$("#scanner_mode").click(function() {

    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);
      }
   );

});
});

好吧,我已经试过了,但它不起作用,所以我如何让 iframe 的 src 加载 result.text url

$(document).ready(function(e) {
$("#scanner_mode").click(function() {

    cordova.plugins.barcodeScanner.scan(
      function (result) {
              document.getElementById("frame").src = result.text; 
      }, 
      function (error) {
          alert("Scanning failed: " + error);
      }

   );

});
});

是的,所以它的工作:)

$(document).ready(function(e) {
$("#scanner_mode").click(function() {

    cordova.plugins.barcodeScanner.scan(
      function (result) {
              document.getElementById("frame").src = result.text; 
      }, 
      function (error) {
          alert("Scanning failed: " + error);
      }

   );

});
});

有效:)