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

Multi part form-data image upload using cordova-file-transfer plugin in ios fails

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

$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

我的服务器控制台出错。

在我的设备控制台中出现以下错误,

上传失败
正文:"An error has occurred. Please contact system administrator." 代码:3 异常:空 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 设备中存在此问题?

来自文档:

params: A set of optional key/value pairs to pass in the HTTP request. (Object, key/value - DOMString)

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

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);