1

我正在使用 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 文件中使用它们。

请问我该怎么做?

谢谢。

4

2 回答 2

1

result.text已经是扫描的文本了。

尝试这个:

var thetext = result.text;
于 2012-12-04T08:13:45.637 回答
0

https://github.com/phonegap/phonegap-plugins/tree/master/Android/BarcodeScanner talks about adding src.com.phonegap.plugins.barcodescanner.BarcodeScanner.java.

于 2013-02-19T21:10:19.447 回答