我的 Sencha touch 混合应用程序使用户能够使用带有Cordova
插件的设备本机相机从应用程序中拍摄照片。但我想disable the front facing camera
。用户不应该能够在前后摄像头之间切换。我尝试了cameraDirection
值1
,0
但这仅有助于在前后摄像头之间切换,而不是禁用前置摄像头。任何帮助将不胜感激。
navigator.camera.getPicture(onPhotoDataSuccess, onFail, { quality: 50, destinationType: navigator.camera.DestinationType.DATA_URL, correctOrientation: true, cameraDirection: 0 });