我试图让 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 的代码在下面的链接中:
但是,当我单击扫描仪的扫描按钮时,它会失败,并且在日志中出现此错误:
BarcodeScanner 失败:异常扫描:TypeError: 'undefined' is not an object