1
ngCordovaのバーコードスキャナを正常に実装しても問題なく動作します。ただし、スキャンするたびに、「クリップボードにコピーされました」というメッセージポップアップが表示されます。私はそのメッセージを取り除きたい...どんなアイデア?Ionic Barcode Scannerで「クリップボード」メッセージを無効にする方法
ありがとうございます!
ngCordovaのバーコードスキャナを正常に実装しても問題なく動作します。ただし、スキャンするたびに、「クリップボードにコピーされました」というメッセージポップアップが表示されます。私はそのメッセージを取り除きたい...どんなアイデア?Ionic Barcode Scannerで「クリップボード」メッセージを無効にする方法
ありがとうございます!
溶液は、パラメータresultDisplayDurationに設定されている:0
例:
cordova.plugins.barcodeScanner.scan(
function (result) {
alert("We got a barcode\n" +
"Result: " + result.text + "\n" +
"Format: " + result.format + "\n" +
"Cancelled: " + result.cancelled);
},
function (error) {
alert("Scanning failed: " + error);
},
{
preferFrontCamera : true, // iOS and Android
showFlipCameraButton : true, // iOS and Android
showTorchButton : true, // iOS and Android
torchOn: true, // Android, launch with the torch switched on (if available)
prompt : "Place a barcode inside the scan area", // Android
resultDisplayDuration: 0, // Android, display scanned text for X ms. 0 suppresses it entirely, default 1500
formats : "QR_CODE,PDF_417", // default: all but PDF_417 and RSS_EXPANDED
orientation : "landscape", // Android only (portrait|landscape), default unset so it rotates with the device
disableAnimations : true, // iOS
disableSuccessBeep: false // iOS
}
)。
このコードスニペットは問題を解決するかもしれませんが、[説明を含む](http://meta.stackexchange.com/questions/114762/explaining-entirely-code-based-answers)は、あなたの役職。将来読者の質問に答えていることを覚えておいてください。そうした人々はあなたのコード提案の理由を知らないかもしれません。 – DimaSan