cordova 3.0.0 で写真アップロードアプリを作成しています。次のアップロード コードがあります: // ファイルをサーバーにアップロードします。
function uploadFileForCapture(mediaFile) {
var ftforcapture = new FileTransfer(),
path = mediaFile.fullPath,
name = mediaFile.name;
var options = new FileUploadOptions();
options.fileKey="fname";
options.fileName=imageURI.substr(imageURI.lastIndexOf('/')+1);
options.mimeType="image/jpeg";
ftforcapture.upload(path,
"http://abc.efg.com/cordovademo/upload.php",
function(result) {
alert('Upload success: ' + result.responseCode);
alert(result.bytesSent + ' bytes sent');
},
function(error) {
alert('Error uploading file ' + path + ': ' + error.code);
},
{ fileName: name },optionas);
}
null のエラー コードを返します。誰か助けてください!ありがとう