AngularJS:上传包含multipart / form-data的多张图片

时间:2019-03-07 13:49:43

标签: angularjs angularjs-directive image-uploading multipartform-data

已更新:

通过multipart / data-form上传多个文件(图像)时,我遇到 405错误。我能够按要求发送图像,并且有效载荷似乎显示正确的边界。但是我在提交API和响应时收到空响应405,状态显示405(不允许方法)错误。我想知道什么都好,这可能是什么问题。

但是,我确实怀疑 request-payload 中的边界可能与这有关。我还知道浏览器在上传时会更改MIME-TYPE,这与multipart / formData冲突。

请告知可能出什么问题。下面是我的代码。

指令(文件上传)

myApp.directive('fileModel', ['$parse', function ($parse) {
    return {
        restrict: 'A',
        link: function(scope, element, attrs) {
            var model = $parse(attrs.fileModel);
            var modelSetter = model.assign;

            element.bind('change', function(){
                scope.$apply(function(){
                    modelSetter(scope, element[0].files[0]);
                });
            });

        }
    };
}]);

查看(html)

<form ng-submit="submit()">
    <input type="text" ng-model="for-param">
    <input type="text" ng-model="for-param">
    <input type="text" ng-model="for-param">

    <input type="file" file-model="image01">
    <input type="file" file-model="image02">

    <button type="submit">Save</button>
</form>

控制器(提交)

$scope.submit = function () {
    var params = {...};
    var data = {
        'frond-side-image' : $scope.image01,
        'back-side-image': $scope.image02
    };

    var formData = new $window.FormData();
    formData.append("image01", $scope.image01);
    formData.append("image02", $scope.image02);

    // Service
    $http({
        method: "POST",
        url: "api-url",
        headers: { "Content-Type": undefined },
        params: params,
        data: formData
    }).then(function (response) {
        console.log(response);
    }, function (error) {
        console.log(error);
    });
};

基于上述配置,以下是我的请求和响应

标题请求(提交后)

Content-Type: multipart/form-data; boundary=…--------------147472608521363

请求有效载荷

-----------------------------1363509831949
Content-Disposition: form-data; name="image01"

stacked_circles.png
-----------------------------1363509831949
Content-Disposition: form-data; name="image01"

stacked_circles.png
-----------------------------1363509831949--

回复

基于上述配置,我得到的响应为空,但是我却收到405错误,这是方法不允许的。

请注意,稍后我将图像转换为base64以在AWS上上传(我只是将image / base64发布到后端,而不是后端将其上传到AWS)。


我为特定查询创建了JSFIDDLE

1 个答案:

答案 0 :(得分:0)

将两个图像追加到FormData object

$scope.submit = function () {
    var params = {};
    var formData = new $window.FormData();
    ̶f̶o̶r̶m̶D̶a̶t̶a̶.̶a̶p̶p̶e̶n̶d̶(̶"̶f̶i̶l̶e̶"̶,̶ ̶d̶a̶t̶a̶)̶;̶
    formData.append("file01", $scope.image01);
    formData.append("file02", $scope.image02);

    // Service
    $http({
        method: "POST",
        url: "api-url",
        headers: { "Content-Type": undefined },
        params: params,
        data: formData
    }).then(function (response) {
        console.log(response);
    }, function (error) {
        console.log(error);
    });
};

发送文件时,每个文件都需要调用自己的formData.append


请确保使用file-model指令的单个文件版本:

myApp.directive('fileModel', ['$parse', function ($parse) {
    return {
        restrict: 'A',
        link: function(scope, element, attrs) {
            var model = $parse(attrs.fileModel);
            var modelSetter = model.assign;

            element.bind('change', function(){
                scope.$apply(function(){
                    ̶m̶o̶d̶e̶l̶S̶e̶t̶t̶e̶r̶(̶s̶c̶o̶p̶e̶,̶ ̶e̶l̶e̶m̶e̶n̶t̶[̶0̶]̶.̶f̶i̶l̶e̶s̶)̶;̶
                    modelSetter(scope, element[0].files[0]);
                });
            });

        }
    };
}]);
<form ng-submit="submit()">
    <input type="file" file-model="image01">
    <input type="file" file-model="image02">

    <button type="submit">Save</button>
</form>