我正在使用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>
警报即将发出,但扫描仪未打开。
我在这里做错了什么?
答案 0 :(得分:0)
我明白了。
我不得不补充道:
<script src="phonegap.js"></script>
<script src="barcodescanner.js"></script>
到index.html页面。这解决了我的情况。