0
我正在使用phonegap將文件上傳到服務器。我正在製作Android應用程序,它將圖片發送到服務器。我收到錯誤使用Phonegap文件傳輸將文件上傳到服務器時出錯
「響應解析錯誤語法錯誤,在此行中意外T_STRING」
我也粘貼代碼
這是我的PhoneGap代碼。
navigator.camera.getPicture(cameraSuccess, cameraError, {
quality : 75,
destinationType : Camera.DestinationType.FILE_URI,
sourceType : Camera.PictureSourceType.PHOTOLIBRARY,
mediaType: navigator.camera.MediaType.ALLMEDIA,
allowEdit : true,
targetWidth: 100,
targetHeight: 100
});
和
move_uploaded_file($_FILES['file']['tmp_name'],'/TeleNoc Sites Images/'.basename($_FILES['file']['name']));
這是我上傳腳本捉對服務器