在Request Payload中上传带有文件名的多部分表单数据

时间:2015-06-01 01:40:06

标签: angularjs file-upload angular-file-upload

我仍然对上传文件的不同方法感到困惑。后端服务器不受我的控制,但我可以使用Swagger页面或Postman上传文件。这意味着服务器运行正常。但是当我使用AngularJS进行上传时,它不起作用。

这是使用Postman进行测试的方法。我只是使用form-data

enter image description here

请注意,请求标头将Content-Type作为multipart / form-data。但请求有效负载为filename,内容类型为image / png。

这是我的代码:

$http({
  method: 'POST',
  url: ApiUrlFull + 'Job/Item?smartTermId=0&name=aaa1&quantity=1&ApiKey=ABC',
  headers: { 'Content-Type': undefined },
  transformRequest: function(data) { 
    var fd = new FormData();
    fd.append('file', params.imageData);
    return fd; 
  }
})

params只是imageData中文件网址的对象。

我的代码也发送类似的URL参数(因此我们可以忽略导致问题)。但请求有效负载是base64,它看起来不同,因为它缺少filename字段。

enter image description here

我对后端没有任何控制权,它是用.NET编写的。

所以我想我的问题是:使用Angular($ http或$ resource),如何修改请求以便我发送正确的Request Payload,就像Postman一样?我无法弄清楚如何对此进行逆向工程。

我已经尝试了这个https://github.com/danialfarid/ng-file-upload,它实际上在POST之前先做了OPTIONS请求(假设CORS问题)。但服务器为OPTIONS提供了405错误。

2 个答案:

答案 0 :(得分:1)

您可以使用以下内容:

<input type="file" name="file" onchange="uploadFile(this.files)"/>

在您的代码中:

$scope.uploadFile = function(files) {
    var fd = new FormData();
    //Take the first selected file
    fd.append("file", files[0]);
    var uploadUrl = ApiUrlFull + 'Job/Item?smartTermId=0&name=aaa1&quantity=1&ApiKey=ABC';
    $http.post(uploadUrl, fd, {
        withCredentials: true,
        headers: {'Content-Type': undefined },
        transformRequest: angular.identity
    }).success( ...all right!... ).error( ..damn!... );

};

答案 1 :(得分:0)

我的需要如下。

  • 在表格中有一张默认图片。
  • 点击图片会打开文件选择窗口。
  • 当用户选择文件时,会立即将其上传到服务器。
  • 一旦我收到文件有效的回复,就会向用户显示图片而不是默认图片,并在旁边添加一个删除按钮。
  • 如果用户点击现有图片,则会重新打开文件选择窗口。

我试图在github上使用一些没有解决问题的代码片段,但是以正确的方式引导我,而我最终做的就是这样:

  

指令

angular.module("App").directive('fileModel', function ($parse) {
    return {
        restrict: 'A',
        link: function (scope, element, attrs) {
            scope.files = {};
            var model = $parse(attrs.fileModel);
            var modelSetter = model.assign;

            // I wanted it to upload on select of file, and display to the user.
            element.bind('change', function () {
                scope.$apply(function () {
                    modelSetter(scope, element[0].files[0]);
                });

                // The function in the controller that uploads the file.
                scope.uploadFile();
            });
        }
    };
});
  

HTML

<div class="form-group form-md-line-input">
    <!-- A remove button after file has been selected -->
    <span class="icon-close pull-right"
          ng-if="settings.profile_picture"
          ng-click="settings.profile_picture = null"></span>
    <!-- Show the picture on the scope or a default picture -->
    <label for="file-pic">
        <img ng-src="{{ settings.profile_picture || DefaultPic }}"
             class="clickable" width="100%">
    </label>

    <!-- The actual form field for the file -->
    <input id="file-pic" type="file" file-model="files.pic" style="display: none;" />
</div>
  

控制器

$scope.DefaultPic = '/default.png';

$scope.uploadFile = function (event) {
        var filename = 'myPic';
        var file = $scope.files.pic;
        var uploadUrl = "/fileUpload";

        file('upfile.php', file, filename).then(function (newfile) { 
            $scope.settings.profile_picture = newfile.Results;
            $scope.files = {};
        });
};

function file(q, file, fileName) {
    var fd = new FormData();
    fd.append('fileToUpload', file);
    fd.append('fn', fileName);
    fd.append('submit', 'ok');

    return $http.post(serviceBase + q, fd, {
        transformRequest: angular.identity,
        headers: { 'Content-Type': undefined }
    }).then(function (results) {
        return results.data;
    });
}

希望它有所帮助。

P.S。如果你需要澄清注释,那么很多代码都是从这个例子中划分出来的。