PhoneGap を使用して Android アプリを開発しています。QRコードをスキャンするために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」、特に「result.text」からデータを取得して、別の html ファイルで使用したいと考えています。
どうすればいいですか?
ありがとう。