使用ios中的cordova-file-transfer插件上传多部分表单数据图像失败

时间:2016-09-25 17:13:15

标签: ios cordova ionic-framework multipartform-data file-transfer

我必须使用离子项目中的多部分图像上传图像到服务器。这是我的代码,

$scope.uploadImage = function(imageUrl) {
      var fileName = imageUrl.substring(imageUrl.lastIndexOf('/')+1);
      var json=  {
        "id":123,
        "name" :fileName
      }
      var fileUploadOptions = new FileUploadOptions();
     fileUploadOptions.fileKey="file";
     fileUploadOptions.fileName = fileName;
     fileUploadOptions.params = {
       json : json
     };
     fileUploadOptions.mimeType="image/jpeg";
     var URL = 'http://192.168.43.7:8080/services/uploadImage'
     var encodedURI = encodeURI(URL);
     console.log('fileUploadOptions : ',fileUploadOptions);
     var ft = new FileTransfer();
     ft.upload(imageUrl, encodedURI, onSuccess, onError, fileUploadOptions, false);

     function onSuccess(response){
      console.log('file uploaded: ',response);
     }
     function onError(error){
       console.log('upload failed',error);
     }
   }

我正在使用以下插件

cordova-plugin-file
cordova-plugin-file-transfer
cordova-plugin-camera

我的图片捕获代码是

$scope.takePhoto = function() {

            var options = {
                quality: 75,
                destinationType: Camera.DestinationType.FILE_URI,
                sourceType: 1,
                allowEdit: false,
                encodingType: 0,
                targetWidth: 1280,
                targetHeight: 720,
                popoverOptions: CameraPopoverOptions,
                direction: 1,
                saveToPhotoAlbum: true
            };

            var cameraSuccess = function(imageData) {
                onPhotoURISuccess(imageData);

                function onPhotoURISuccess(imageURI) {
                    createFileEntry(imageURI);
                }

                function createFileEntry(imageURI) {
                    window.resolveLocalFileSystemURL(imageURI, copyPhoto, fail);
                }

                function copyPhoto(fileEntry) {
                    window.requestFileSystem(LocalFileSystem.PERSISTENT, 0, function(fileSys) {
                        fileSys.root.getDirectory("photos", { create: true, exclusive: false }, function(dir) {
                            var fileName = 12 + "_" + 56 + "_" + 67 + ".jpg";
                            fileEntry.copyTo(dir, fileName, onCopySuccess, fail);
                        }, fail);
                    }, fail);
                }

                function onCopySuccess(entry) {
                    console.log('Full path: ', JSON.stringify(entry));
                    var path = entry.toURL();
                    $scope.imageUrl = path;
                    console.log('imageUrl: ',$scope.imageUrl);

                }

                function fail(error) {
                    console.error(JSON.stringify(error));
                    var cause = "";
                    if (error.code == 20) {
                        cause = "Camera permission denied"
                    }

                }

            }

            var cameraError = function(error) {
                console.log('camera error: ', error);
            }
            navigator.camera.getPicture(cameraSuccess, cameraError, options);



        }

我正在将$scope.imageUrl变量传递给上传功能。

该代码在Android设备中正常工作。 但iOS,上传失败。

我正在

com.fasterxml.jackson.databind.JsonMappingException: No content to map due to end-of-input

我的服务器控制台出现

错误。

在我的设备控制台中,我收到以下错误,

上传失败
正文:“发生了错误。请与系统管理员联系。” 代码:3 异常:null http_status:500 来源:“file:///var/mobile/Containers/Data/Application/8C4518AC-5606-4806-A8D2-216125EFE725/Documents/photos/12_56_57.jpg” 目标:“http://192.168.43.7:8080/services/uploadImage

错误正文中的消息来自我的服务器。 根据我从服务器获得的错误,我发现,JSON部分没有上传到服务器。我试图在没有发送JSON对象的情况下重新发布与邮递员相同的问题。我得到了同样的错误。

有谁知道这是什么问题?为什么只有在iOS设备中存在这个问题?

2 个答案:

答案 0 :(得分:4)

来自文档:

  

params:一组可选的键/值对,用于传递HTTP请求。 (对象,键/值 - DOMString)

请尝试使用fileUploadOptions.params = { json : JSON.stringify(json) }

答案 1 :(得分:1)

    var imageUrI="file:///storage/emulated/0/newfile.csv";
    var options = new FileUploadOptions();
    options.fileKey = "file";
    options.fileName = imageURI.substr(imageURI.lastIndexOf('/') + 1);
    options.mimeType = "image/jpeg/csv";

        var params = new Object();
        params.value1 = "test";
        params.value2 = "param";

        options.params = params;
        options.chunkedMode = false;

        var ft = new FileTransfer();
        ft.upload(imageURI, "http://fileupload/admin/add_image_my.php",
        function (result) {
            console.log(JSON.stringify(result));
        },
        function (error) {
            console.log(JSON.stringify(error));
        }, options);