gpt4 book ai didi

ios - 无法在Cordova中使用条形码扫描仪(已安装插件)。

转载 作者:行者123 更新时间:2023-12-01 19:00:52 24 4
gpt4 key购买 nike

尝试使用条形码扫描仪插件时,我的Cordova应用程序出现问题。

该插件似乎已正确安装,因为当我键入cordova plugin ls
我得到答复:

    [ 'com.phonegap.plugins.barcodescanner',
'org.apache.cordova.console' ]

但是,我尝试了多种触发扫描仪的方法,但均无效果。我也将条形码扫描器.js复制到了自己的 www folderindex.html中,即使我不再阅读它也是如此。
自述文件中的建议方法是:
cordova.plugins.barcodeScanner.scan()

没有解决。我尝试了许多其他事情,但没有一个起作用。
现在,我希望这里的某人遇到相同的问题并找到解决方案。
我正在测试iOS应用版本。

最佳答案

将此添加到您的config.xml

<feature name="BarcodeScanner">
<param name="android-package" value="com.phonegap.plugins.barcodescanner.BarcodeScanner" />
</feature>

并且在使用插件时
function clickScan() {
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);
});}

关于ios - 无法在Cordova中使用条形码扫描仪(已安装插件)。,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23060038/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com