将Content-Type标头设置为multipart?

时间:2015-08-12 16:26:57

标签: javascript html angularjs spring

Angular建议将“Content-Type”标头设置为undefined(https://docs.angularjs.org/api/ng/service/ $ http),以便浏览器可以获取文件数据并提供正确的Content-Type标头。

但即使我上传PDF,内容类型也设置为'text / plain; charset = UTF-8'。我希望将content-type设置为multipart,因为这是后端所期望的,但是如果浏览器负责设置内容类型,我怎么能实现呢?

我也试过this post's tactic但无济于事。我也尝试过使用具有相同结果的Dropzone.js。

以下是请求本身的代码:

HTTP ERROR: 503

Problem accessing /browser/. Reason:

    Service Unavailable

Powered by Jetty://

下面我将包含以前链接的帖子中的代码,该代码应该可以正常工作,但是当我使用自己的url时,同样的事情发生了:浏览器将Content-Type设置为'text / plain; charset = UTF-8 '我从后端得到415错误。怎么样?为什么?任何帮助(包括后端的解决方法)都将非常感激。我已经做了好几天了。

JavaScript:

uploadFile: function(token, baseurl, projectname, filename, file) { 
        var dataUpload= {
          method: 'PUT',
          url: baseurl + '/projects/' + projectname + '/files/' + filename,
          transformRequest: angular.identity,
          headers: {
                  'Authorization': 'bearer ' + token,
                  'Accept': "application/json",
                  'Content-Type': undefined
                },
          data: {
            'files': file
          }
      };
      return dataUpload;
    }

HTML:

var myApp = angular.module('myApp', []);

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

myApp.service('fileUpload', ['$http', function ($http) {
 this.uploadFileToUrl = function(file, uploadUrl){
    var fd = new FormData();
    fd.append('file', file);
    $http.post(uploadUrl, fd, {
        transformRequest: angular.identity,
        headers: {'Content-Type': undefined}
    })
    .success(function(){
    })
    .error(function(){
    });
 }
}]);

myApp.controller('myCtrl', ['$scope', 'fileUpload', function($scope, fileUpload){

$scope.uploadFile = function(){
    var file = $scope.myFile;
    console.log('file is ' );
    console.dir(file);
    var uploadUrl = "/fileUpload";
    fileUpload.uploadFileToUrl(file, uploadUrl);
};

}]);

1 个答案:

答案 0 :(得分:1)

我想现在回答这个问题为时已晚,但万一有人遇到同样的问题。

代码中的错误在于:

STAY-ACTIVE

您的表单数据对象已经包含您的后端所期望的字段的信息,因此您需要更改该行:

data: {
    'files': file
}

如果你手动创建了FormData对象,你可能会有这样的东西:

data: file