1
성공적으로 ngCordova의 바코드 스캐너를 구현했으며 제대로 작동합니다. 그러나 스캔 할 때마다 "클립 보드에 복사되었습니다"라는 메시지 팝업이 표시됩니다. 나는 그 메시지를 없애고 싶다. 어떤 생각?이오니아 바코드 스캐너에서 "클립 보드"메시지를 비활성화하는 방법
감사합니다. 용액 resultDisplayDuration 파라미터 설정
성공적으로 ngCordova의 바코드 스캐너를 구현했으며 제대로 작동합니다. 그러나 스캔 할 때마다 "클립 보드에 복사되었습니다"라는 메시지 팝업이 표시됩니다. 나는 그 메시지를 없애고 싶다. 어떤 생각?이오니아 바코드 스캐너에서 "클립 보드"메시지를 비활성화하는 방법
감사합니다. 용액 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