barcodescanner phonegap插件问题

时间:2014-02-01 16:23:08

标签: android cordova

我目前正在尝试在我的phonegap项目中实现barcodescanner。 但是我完全迷失了,因为我读了很多关于裸码扫描器的话题,所提供的所有可能解决方案对我都不起作用。

首先,一些教程和文档说我必须使用 cordova.plugin.barcodeScanner.scan(...)。但对我来说,cordova.plugin总是未定义的。

其他人说我必须做cordova.require(“cordova / plugin / BarcodeScanner”);并且它不起作用,当我运行我的应用程序时,我收到以下错误:“模块”cordova / plugin / BarcodeScanner“找不到。

1 个答案:

答案 0 :(得分:2)

如果你使用PhoneGap Build ......这是一个实现的例子......

在config.xml文件中添加以下行:

<!-- We'll include the Barcode plugin  -->
<gap:plugin name="com.phonegap.plugins.barcodescanner" />

然后在index.html文件中:

<script type="text/javascript">
function Scan() {
    cordova.plugins.barcodeScanner.scan(
      function (result) {
          window.open(result.text,'_self', 'location=no') //Opens URL in browser
          //alert("We got a barcode\n" +
          //      "Result: " + result.text + "\n" +
          //      "Format: " + result.format + "\n" +
          //      "Cancelled: " + result.cancelled);
      }, 
      function (error) {
          alert("Scanning failed: " + error);
      }
    );
}
</script>

使用页面正文部分中的按钮调用脚本:

<button onclick="Scan()">Barcode</button>
祝你好运!