AngularJS上传和发布多个文件

时间:2015-10-07 15:27:46

标签: angularjs django forms file post

所以最终,我正在尝试使用AngularJS上传和发布多个文件到Django后端。我可以发布单个文件,但似乎在FileList数据字段中放入$http.post对象时,后端不再检测POST请求中的任何文件。

这是html的样子:

<form enctype="multipart/form-data" action="upload" method="POST">
  <div class="form-group">
    <span class="btn btn-info btn-file">
      <i class="glyphicon glyphicon-file"></i> Browse
      <input class="btn btn-lg btn-info" name="uploadedfile" type="file" accept=".eossa" onchange="angular.element(this).scope().filesUploaded(this.files)" multiple><br/>
    </span>
    <button type="button" class="btn btn-success" ng-click="uploadFiles()" ng-class="{'disabled':!model.files.length}">
      <i class="glyphicon glyphicon-download-alt"></i> Submit
    </button>
  </div>
  <pre ng-repeat="file in model.files" ng-show="file.name">{{file.name}}  ({{file.size/1000}} KB)  {{file.lastModifiedDate}} </pre>
</form>

这是相关的JavaScript:

$scope.filesUploaded = function(files) {
    if(files.length < 1) return;
    $scope.model.files = files;
    $scope.$apply();
};

$scope.uploadFiles = function(){
  var fd = new FormData();
  fd.append("file", $scope.model.files);
  Services.uploadFiles(fd)}

这是我的uploadFiles服务:

uploadFiles: function(form){
    return $http.post("/api/file-upload/", form, {withCredentials: true, headers: {'Content-Type': undefined }, transformRequest: angular.identity})
  },

在这种情况下,后端在request.FILES中没有看到任何内容;但是,如果不是附加$scope.model.files,而是追加$scope.model.file[0],我会在后端的请求中看到一个文件。在这种情况下,uploadFiles函数如下所示:

$scope.uploadFiles = function(){
  var fd = new FormData();
  fd.append("file", $scope.model.files[0]);
  Services.uploadFiles(fd)
}

那为什么不能将FileList追加到Form?你怎么能发布一个FileList?

由于

2 个答案:

答案 0 :(得分:2)

首先按照指出here

创建一个指令
.directive('filesModel', function () {
    return {
        restrict: 'A',
        controller: function ($parse, $element, $attrs, $scope) {
            var exp = $parse($attrs.filesModel);
            $element.on('change', function () {
                exp.assign($scope, this.files);
                $scope.$apply();
            });
        }
    };
});

对于转换函数check this out。 你可以使用像:

这样的工厂
    .factory('File', function () {
        return {
            // Define a function to transform form data
            transformRequest: function (data, headersGetter) {
                var fd = data ? new FormData() : null;
                if (data) {
                    angular.forEach(data, function (value, key) {
                        // Is it a file?
                        if (value instanceof FileList) {
                            if (value.length == 1) {
                                fd.append(key, value[0]);
                            } else {
                                angular.forEach(value, function (file, index) {
                                    fd.append(key + '_' + index, file);
                                });
                            }
                        }
                        // Is it an object?
                        else if (typeof value === 'object') {
                            fd.append(key, JSON.stringify(value));
                        } else {
                            fd.append(key, value);
                        }
                    });
                }
                return fd;
            }
        };
    })

然后是服务:

uploadFiles: function(form){
    return $http.post("/api/file-upload/", form, {withCredentials: true, headers: {'Content-Type': undefined }, transformRequest: File.transformRequest})
}

最后是html:

<input type="file" files-model="<model>"/>

或多个文件

<input type="file" files-model="<model>" multiple/>

答案 1 :(得分:0)

我从来没有尝试过上面的方法,这可能是一个警察,但我想我会把你转向一些图书馆。

我会检查这两个很棒的AngularJS文件上传Repos。我个人使用这个。

两者都支持轻松设置多个文件上传。

ng-file-upload

这是另一个。

angular-file-upload

为什么几十个人为你做出贡献并为之做了几个小时的工作?