Phonegap build cli-5.2.0 - 插件条形码扫描器未触发

时间:2015-10-16 23:27:37

标签: cordova phonegap-plugins phonegap-build

我正在使用phonegap构建版本cli-5.2.0和barcodescanner插件。

我已将插件添加到config.xml:

然后在我的index.html页面中添加了:

<script>
function clickScan() {

alert('tester');

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


};
</script>

按一下按钮:

<button onclick="clickScan();">Scan</button>

警报即将发出,但扫描仪未打开。

我在这里做错了什么?

1 个答案:

答案 0 :(得分:0)

我明白了。

我不得不补充道:

<script src="phonegap.js"></script>
<script src="barcodescanner.js"></script>

到index.html页面。这解决了我的情况。