我在iPhone 4S上使用Phonegap 2.7.0。當我第一次打電話給.getPicture
時,從庫中選擇一張照片後不會觸發回調。之後,一切都很好,直到應用程序重新啓動。我的代碼:Phonegap camera.getPicture - 第一個電話沒有回調
var captureSuccess = function (imageURI) {
alert('Success');
};
var captureError = function (error) {
alert('Error');
};
navigator.camera.getPicture(captureSuccess, captureError, {
quality: 50,
destinationType: Camera.DestinationType.FILE_URI,
sourceType: navigator.camera.PictureSourceType.PHOTOLIBRARY
});
當我使用DATA_URL
作爲sourceType
回調被解僱每次。
感謝您的任何建議。
您是否找到了解決此問題的方法? –