マイページに戻る
連携サービス
設定ファイル
API一覧
ver.1.0でのみ使用できるAPI
© Newphoria Corporation Inc. All rights reserved.
QRコード等のバーコードを読み取ります。
バーコードを読み取る 【 captureBarcode 】
QRコードの読み取り機能をアプリ内で実装したい場合、こちらの機能をご利用ください。
ランタイムのバージョン毎に最適化したサンプルをダウンロードしてご使用ください。
(for applican api ver.1.0)
(for applican api ver.2.0)
captureBarcode(Function<BarcodeResult> successCallback, Function errorCallback)
バーコードを読み取ります。
//QRコード読み取り function captureBarcode(){ applican.barcode.captureBarcode(captureBarcodeSuccess, captureBarcodeError); } function captureBarcodeSuccess(res){ var dump = "captureBarcodeSuccess\n"; dump += "codeData:"+res.codeData+"\n"; document.getElementById("dumpAreaBarcode").value =dump; } function captureBarcodeError(e){ var dump = "captureBarcodeError\n"; document.getElementById("dumpAreaBarcode").value =dump; }