0

我试图让 XZing 在我的 PhoneGap Iphone 应用程序上运行:

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

为什么 XCode 4 在构建过程中找不到我的 .h 文件?

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

现在我正在尝试运行扫描仪并使用 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' is not an object

4

1 回答 1

1

您可以尝试以下操作:
1) 在 Cordova.plist 和barcodescanner javascript 文件中将字符串“org.apache.cordova.barcodeScanner”更改为“CDVBarcodeScanner”。
2) 在barcodescanner.js 中:
a) 将Cordova 更改为cordova
b) 在开头用hasResource 和addResource 注释行。

希望这会有所帮助。

于 2013-01-24T17:51:31.410 回答