使用Angular和Django上传文件

时间:2014-07-26 04:21:55

标签: python django angularjs django-forms django-uploads

所以,我有一个问题,我无法找到解决方案。我正在使用Django开发一个应用程序,我的前端必须是angular-js。现在我能够呈现表单并发布表单中的数据,但我不知道如何使用这些表单上传文件。

这是我的代码:

在urls.py中

url(r'^getter/$', TemplateView.as_view(template_name = "upload.html"))
url(r'^getter/test/', views.test, name = "thanks.html")
在views.py中

def test(request):
   upload_form = uploadform(request.POST, request.FILES)
   data = json.loads(request.body)
   file_path = data.path

在forms.py

select_file = forms.FileField(label = "Choose File")

在我的控制器里面的js文件中

myapp.controller('abc', function ($scope, $http)
$scope.submit = function(){
var file = document.getElementById('id_select_file').value
var json = {file : string(file)}
$http.post('test/',json)
...success fn....
...error fn...

}; });

现在的问题是,如果在我看来,我是否

f = request.FILES['select_file']

我在MultiValueDict中找不到错误'select_file':{}

可能问题在于发送我的帖子请求的方式不是发送所有元数据....请帮我解决这个问题我花了一整天寻找解决方案但是没有用。

PS:对于一些限制政策,我不能使用Djangular,所以请给我解决方案,不要使用djangular。感谢

编辑:**将文件属性应用于服务器正在接收的json也不起作用**

4 个答案:

答案 0 :(得分:1)

使用以下代码段,以便您可以将常用数据以及文件数据从angular发送到django。

$scope.submit = function(){
    var fd = new FormData();
    datas = $("#FormId").serializeArray();
    // send other data in the form
    for( var i = 0; i < datas.length; i++ ) {
         fd.append(datas[i].name, datas[i].value);
        };
    // append file to FormData
    fd.append("select_file", $("#id_select_file")[0].files[0])
    // for sending manual values
    fd.append("type", "edit");
    url = "getter/test/",
    $http.post(url, fd, {
        headers: {'Content-Type': undefined },
        transformRequest: angular.identity
    }).success(function(data, status, headers, config) {
        // this callback will be called asynchronously
        // when the response is available
    }).
    error(function(data, status, headers, config) {
        // called asynchronously if an error occurs
        // or server returns response with an error status.
        });
};

现在,您将在select_file下获取request.FILES,并在django视图中获得request.POST内的其他数据。

答案 1 :(得分:1)

我遇到了同样的问题。我发现了一个有效的解决方案,如何使用Angular $ http发送文件到Django Forms。

<强>指令

app.directive("filesInput", function() {
  return {
    require: "ngModel",
    link: function postLink(scope,elem,attrs,ngModel) {
      elem.on("change", function(e) {
        var files = elem[0].files;
        ngModel.$setViewValue(files);
      })
    }
  }
});

<强> HTML

<form ng-submit="send()" enctype="multipart/form-data">
    <input type="text" ng-model="producer.name" placeholder="Name">
    <input type="file" files-input ng-model="producer.video">
</form>

<强> CONTROLLER

$scope.send = function(){
    var fd = new FormData();
    fd.append('video', $scope.producer.video[0]);
    fd.append("name", $scope.producer.name);

    $http({
        method: 'POST',
        url: '/sendproducer/',
        headers: {
          'Content-Type': undefined
        },
        data: fd,
        transformRequest: angular.identity
    })
    .then(function (response) {
      console.log(response.data)
    })
}

DJANGO VIEW FORM

class ProducerView(View):

    def dispatch(self, *args, **kwargs):
        return super(ProducerView, self).dispatch(*args, **kwargs)

    def post(self, request):
        form = ProducerForm(data = request.POST, files = request.FILES or None)
        if form.is_valid():
            form.save()
            return JsonResponse({"status": "success", "message": "Success"})
        return JsonResponse({"status": "error", "message": form.errors})

答案 2 :(得分:0)

早期帖子与正确Angular函数的组合。

(function(app){
   app.controller("Name_of_Controller", function($scope, $http){
      $scope.submit = function(){
         var fd = new FormData();
         datas = $("#formID").serializeArray();
         for( var i = 0; i < datas.length; i++ ) {
            fd.append(datas[i].name, datas[i].value);
         };
        fd.append("selected_file", $("#file_id")[0].files[0])
        fd.append("type", "edit");
        url = "/results/",
        $http.post(url, fd, {
            headers: {'Content-Type': undefined },
            transformRequest: angular.identity
        }).then(function (response) {
            console.log(response.data)
        }).catch(function (err) {});;
    };
});
})(App_name);

答案 3 :(得分:-1)

我强烈建议您使用第三方插件,例如ngUploadfileUploader来实现此目的。你在客户端做什么看起来不正确。

另请参阅this SO thread on angularjs file uploads