从PhoneGap Cordova App上传图片

时间:2014-12-05 00:02:41

标签: php android cordova mime

尝试上传照片,但无法将文件数据传输到服务器。该应用程序调出相机并对服务器进行POST,但从未上传任何文件。

我创建了最简单的应用,我可以在https://github.com/dustinb/Camera/blob/master/index.html进行测试。当上传发生时,只有452个字节发送到服务器。

73.3.252.133 - - [04/Dec/2014:23:55:11 +0000] "POST /upload HTTP/1.1" 200 452 "-" "Dalvik/1.4.0 (Linux; U; Android 2.3.4; ADR6400L Build/GRJ22)"

我看过很多这方面的例子,看不出有什么不同于我的东西。我使用build.phonegap.com构建和安装

编辑:使用tcpdump我可以看到PHP中的$ _POST或$ _FILES变量中的数据只是到达服务器

    0x0030:  150c 34c5 504f 5354 202f 7570 6c6f 6164  ..4.POST./upload
    0x0040:  2048 5454 502f 312e 310d 0a43 6f6e 7465  .HTTP/1.1..Conte
    0x0050:  6e74 2d54 7970 653a 206d 756c 7469 7061  nt-Type:.multipa
    0x0060:  7274 2f66 6f72 6d2d 6461 7461 3b20 626f  rt/form-data;.bo
    0x0070:  756e 6461 7279 3d2b 2b2b 2b2b 0d0a 5573  undary=+++++..Us
    0x0080:  6572 2d41 6765 6e74 3a20 4461 6c76 696b  er-Agent:.Dalvik
    0x0090:  2f31 2e34 2e30 2028 4c69 6e75 783b 2055  /1.4.0.(Linux;.U
    0x00a0:  3b20 416e 6472 6f69 6420 322e 332e 343b  ;.Android.2.3.4;
    0x00b0:  2041 4452 3634 3030 4c20 4275 696c 642f  .ADR6400L.Build/
    0x00c0:  4752 4a32 3229 0d0a 486f 7374 3a20 7371  GRJ22)..Host:.sq
    0x00d0:  7561 7265 732e 726f 756e 6470 6f72 6368  uares.roundporch
    0x00e0:  2e63 6f6d 0d0a 436f 6e6e 6563 7469 6f6e  .com..Connection
    0x00f0:  3a20 4b65 6570 2d41 6c69 7665 0d0a 4163  :.Keep-Alive..Ac
    0x0100:  6365 7074 2d45 6e63 6f64 696e 673a 2067  cept-Encoding:.g
    0x0110:  7a69 700d 0a43 6f6e 7465 6e74 2d4c 656e  zip..Content-Len
    0x0120:  6774 683a 2032 3933 3530 0d0a 0d0a       gth:.29350....
    -- next packet --
    0x0000:  4500 05dc 617d 4000 3206 a8e9 4903 fc85  E...a}@.2...I...
    0x0010:  68cf 8a5d d68c 0050 aa2b ce30 13d2 95d7  h..]...P.+.0....
    0x0020:  8010 02da 80ec 0000 0101 080a 01be ac57  ...............W
    0x0030:  150c 34c5 ffd8 ffe1 0116 4578 6966 0000  ..4.......Exif..
    0x0040:  4949 2a00 0800 0000 0e00 3201 0200 1400  II*.......2.....

似乎问题是带有Content-Disposition的mime边界,并且没有发送其他标头。在发送Content-Length之后可以在转储中看到,接下来立即发送JPEG数据而不使用mime边界。

4 个答案:

答案 0 :(得分:1)

在发送之前尝试编码网址。

ft.upload(imageURI, 
    encodeURI(serverURL + "/upload.php"),
function (e) {
    alert('success');
},function (e) {
    alert("failed");
},options);

答案 1 :(得分:1)

在这里查看我的样本,我希望它有所帮助。

HTML

<!DOCTYPE html>

<html>
<head>
<meta charset="utf-8">
<meta content="telephone=no" name="format-detection">
<!– WARNING: for iOS 7, remove the width=device-width and height=device-height attributes. See https://issues.apache.org/jira/browse/CB-4323 –>
<meta content=
"user-scalable=no, initial-scale=1, maximum-scale=1, minimum-scale=1, width=device-width, height=device-height, target-densitydpi=device-dpi"
name="viewport">
<script src="cordova.js" type="text/javascript"></script>
<script src="js/index.js" type="text/javascript"></script>
<title>Camera Cordova Plugin</title>
</head>

<body>
<button onclick="capturePhoto();">Capture Photo</button><br>
<button onclick="getPhoto(pictureSource.PHOTOLIBRARY);">From Photo
Library</button><br>
<img id="image" src="" style="display:none;width:100%;">
<button onclick="upload();">Upload</button>
</body>
</html>

JS

function upload() {
    var img = document.getElementById('image');
    var imageURI = img.src;
    var options = new FileUploadOptions();
    options.fileKey = "file";
    options.fileName = imageURI.substr(imageURI.lastIndexOf('/') + 1);
    options.mimeType = "image/jpeg";
    var params = new Object();
    options.params = params;
    options.chunkedMode = false;
    var ft = new FileTransfer();
    ft.upload(imageURI, "https://www.example.com/upload.php", win, fail,
        options);
}

function win(r) {
    console.log("Code = " + r.responseCode);
    console.log("Response = " + r.response);
    console.log("Sent = " + r.bytesSent);
}

function fail(error) {
    alert("An error has occurred: Code = " + error.code);
    console.log("upload error source " + error.source);
    console.log("upload error target " + error.target);
}

PHP

<?php
move_uploaded_file($_FILES["file"]["tmp_name"], '/path/to/file');

http://blog.revivalx.com/2014/07/12/upload-image-using-file-transfer-cordova-plugin-for-ios-and-android/

答案 2 :(得分:1)

尝试自行设置边框,将标题添加到FileUploadOptions

var headers={'Content-Type':'multipart/form-data; boundary=+++++'};
options.headers = headers; 

答案 3 :(得分:1)

问题是使用了错误的文件传输插件。不知道我在哪里找到了另一个插件或为什么使用它但是没有工作

-    <gap:plugin name="com.chanthu.evri.gcs-file-transfer" version="1.0.0" />
+    <gap:plugin name="org.apache.cordova.file-trasfer" />
相关问题