ZXing的PhoneGap二维码扫描仪

时间:2013-01-24 15:11:44

标签: javascript iphone cordova qr-code zxing

我想在我的PhoneGap Iphone应用程序上运行XZing:

在做了一些研究之后,我找到了这个链接,以获得将XZing安装到我的应用程序的最佳说明:

Why can't XCode 4 find my .h files during a build?

我完成了这些步骤并运行了没有错误的应用程序。

现在我正在尝试运行扫描仪并使用BarcodeScanner测试文件,这是我的代码

<!DOCTYPE html>

<html>
    <head>
        <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
        <meta name="format-detection" content="telephone=no" />
        <meta name="viewport" content="user-scalable=no, initial-scale=1, maximum-scale=1, minimum-scale=1, width=device-width, height=device-height, target-densitydpi=device-dpi" />
        <link rel="stylesheet" type="text/css" href="css/index.css" />
        <title>Hello World</title>
    </head>
    <body onLoad="onLoad()">
        <div class="app">
            <div id="running-bits">

<button id="scan-button">scan: ?</button>

<p>(<span id="test-count-current">?</span>
/
<span id="test-count-total">?</span>)

<p><img id="image" src="">

<p>expected text:
<br><tt><span id="test-text">?</span></tt>

</div>

<p><b id="test-done"></b>
<br><button id="start-over">start over</button>

<p>Results:
<ul id="results-list">
</ul>
        </div>
        <script type="text/javascript" src="cordova-2.3.0.js"></script>
        <script src="js/barcodescanner.js"></script>
        <script src="js/phonegap-app.js"></script>
        <script type="text/javascript" src="js/index.js"></script>
        <script type="text/javascript">
            app.initialize();
        </script>
    </body>
</html>

以下链接中的phonegap-app.js代码:

https://github.com/phonegap/phonegap-plugins/blob/master/iPhone/BarcodeScanner/test/phonegap-app/phonegap-app.js

但是,当我点击扫描仪的扫描按钮时,它会失败,我在日志中收到此错误:

BarcodeScanner失败:异常扫描:TypeError:'undefined'不是对象

1 个答案:

答案 0 :(得分:1)

您可以尝试以下事项:
1)更改Cordova.plist和barcodescanner javascript文件字符串&#39; org.apache.cordova.barcodeScanner&#39;到CDVBarcodeScanner&#39; 2)在barcodescanner.js中:
a)将Cordova改为cordova
b)在开头用hasResource和addResource注释这些行。

希望这会有所帮助。