我正在使用 PhoneGap 开发一个 Android 应用程序。我正在使用 ZXing 插件来扫描二维码。
在 index.html 中,我放置了一个按钮以扫描 QR 码:
<a href="#" onclick="scanCode();">
这是java-script文件中scanCode的代码:
var scanCode = function() {
window.plugins.barcodeScanner.scan(
function(result) {
alert("Scanned Code: " + result.text
+ ". Format: " + result.format
+ ". Cancelled: " + result.cancelled);
}, function(error) {
alert("Scan failed: " + error);
});
}
我想从“结果”中检索数据,尤其是“result.text”,以便在另一个 html 文件中使用它们。
请问我该怎么做?
谢谢。