我正在使用这个包:
科尔多瓦:com.phonegap.plugins.barcodescanner
并使用此功能进行扫描:
Template.barcode_scanner.events({
'click button': function () {
cordova.plugins.barcodeScanner.scan(
function (result) {
if(!result.cancelled)
{
alert("Barcode type is: " + result.format);
alert("Decoded text is: " + result.text);
}
else
{
alert("You have cancelled scan");
}
},
function (error) {
alert("Scanning failed: " + error);
}
);
}
});
我想知道如何自定义扫描屏幕。我需要在扫描屏幕上添加几个按钮。谁知道怎么做?
答案 0 :(得分:0)
我使用包修复了它:
科尔多瓦:科尔多瓦-插件-qrscanner
文档:
https://www.npmjs.com/package/cordova-plugin-qrscanner
完全可自定义,但只能读取QR码。