Cordova Honeywell条码扫描器插件适用于Cordova / PhoneGap的Honeywell Dolphin 70E条码扫描器。以下是安装和使用该插件的步骤:
- 在项目中安装插件:
cordova plugin add org.pluginporo.honeywell_scanner_plugin
- 调用扫描功能:
navigator.honeywell_scanner_plugin.scan(
function(scanResult) {
// scanResult contains {barcode, dln, first_name, last_name}
console.log(scanResult.barcode);
},
function(err) {
// error callback
console.log(err);
}
);
在调用 scan
方法时,回调函数的 scanResult
对象包含以下字段:
-
barcode: 扫描到的条码
-
dln: 驾驶证号(如果适用)
-
first_name: 名字
-
last_name: 姓氏
暂无评论