真正令人困惑的是,当我用手机摄像头捕获图像时,我使用FileTransfer.moveTo并将其发送到所需的SD卡上的指定文件夹中。我还在localStorage中保留了一个图像对象列表,看起来像这样:

[
Object
ean: "42208556"
image: "file:///storage/sdcard0/PhotoscanPhotos/d51b5b77-aab1-9947-096d-b0a92dfb87eafoto.jpg"
timestamp: 1396441761000
__proto__: Object
etc etc

作为我的应用程序的一部分,我使用与src属性相同的image [i] .image将图片动态添加到列表中,并且效果很好。但是,对FileTransfer.upload使用相同的参数会给我上述错误。

我的功能是API docs(Cordova 3.1)的近似副本。代码如下:
function uploadImagesAsJpegs(imageObject) {
    var options = new FileUploadOptions();
    options.fileKey = "file";
    options.fileName=imageObject.image.substr(imageObject.image.lastIndexOf('/')+1);
    //alert(options.fileName);//debugging ............we're happy with this
    options.mimeType="image/jpeg";
    options.chunkedMode = true;

    var serverUrl = http://172.17.7.112/mylocalserver;


    var params = {};
    params.value1 = ean;
    params.value2 = imageObject.timestamp;

    options.params = params;

    var fileTransfer = new FileTransfer();

    //alert(encodeURI(serverURL));//debugging  ............we're happy with this
    //alert("image to upload is: " + imageObject.image);//debugging............we're happy with this
    fileTransfer.upload(imageObject.image, encodeURI(serverURL), onUploadSuccess, onUploadFail, options);
}

最佳答案

我相信设置options.chunkedMode = false;可以解决文件上传过程中的大多数问题,请尝试一下。

07-28 03:11