该请求被拒绝,因为在angularjs和spring mvc中未找到多部分边界 [英] the request was rejected because no multipart boundary was found with angularjs and spring mvc

查看:50
本文介绍了该请求被拒绝,因为在angularjs和spring mvc中未找到多部分边界的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在尝试使用angular js和spring mvc上传具有multiple ="true"的多个输入类型文件,但是我从服务器得到的异常是该请求被拒绝,因为未找到多部分边界"

I was trying to upload multiple input type file with multiple="true" using angular js and spring mvc but i got exception from server is "the request was rejected because no multipart boundary was found"

在这里,我会将我的代码放在下面

here i will put my code below

我的jsp是

 <html ng-app="myApp">
 <body>
       <div ng-controller="controller">
            <input type="submit" name="submit" value="add"  ng-click="add();" />
          <form name="form" id="form"   ng-submit="submitRecord(blog)" enctype="multipart/form-data" >
                   <div id="outerdiv" name="outerdiv">
                   </div>
          </form>
       </div>
 </body>
  </html>

在这里,我是单击添加"后从角度控制器生成输入元素的,输入控件在"中生成.

here i was generate input elements from angular controller after clicking add and input controls are generate in "".

我的角度控制器是

'use strict';

var App = angular.module('TechnoBlogs', ['ngRoute','ui.router']);
var $injector = angular.injector(['ng']);
App.config(['$httpProvider', function ($httpProvider) {    

    /*$httpProvider.defaults.headers.post['Content-Type'] = 'application/json; charset=UTF-8';*/
}],['$routeProvider',function($routeProvider){
    $routeProvider.
    when('/create', {
       templateUrl: '/',
       controller: 'controller'
});

 }]);
var currentg1=0;

var controller = function($scope,$http,fileService){

$scope.blog = [];
/*var currentg1=0;*/
$scope.blog.desc=[];
$scope.blog.desccode=[];
$scope.blog.descimg=[];

$scope.add=function(){



var $div = angular.element("<br><div><label id='desc["+currentg1+"]'   for='desc["+currentg1+"]'>Description"+currentg1+"<span style='color: red;''>*</span></label><textarea rows='3' cols='6' id='desc["+currentg1+"]' name='desc["+currentg1+"]' ng-model='blog.desc["+currentg1+"]' required='required'></textarea> </div><br><div><label id='desccodeL["+currentg1+"]' for='desccodeL["+currentg1+"]''>Code "+currentg1+"</label><textarea rows='3' cols='6' id='desccode["+currentg1+"]' name='desccode["+currentg1+"]' ng-model='blog.desccode["+currentg1+"]''></textarea></div><div><label id='descimgL["+currentg1+"]' for='descimgL["+currentg1+"]'>Image "+currentg1+"</label><input type='file' id='descimg["+currentg1+"]' class='file' name='descimg["+currentg1+"]' my-file-upload='descimg["+currentg1+"]'  multiple/></div>");
var e=document.getElementById("outerdiv");


angular.element(e).append($div).injector().invoke(function($compile) {
      var scope = angular.element($div).scope();
      $compile($div)(scope);        
    });

    currentg1++;
};

$scope.submitRecord=function(blog){


var fd = new FormData();
var files=[];
for(var i=0;i<currentg1;i++)
{

    files[i] = fileService.getFile("descimg["+i+"]");
    console.log("files["+i+"] ---> "+files[i]);
}


fd.append("files",files);

alert(fd);
console.log("--->>> "+files);


$http.post("saveblog",fd, {
    transformRequest: angular.identity,
    headers: {'Content-Type': undefined}
}).success(function(){
    alert("success");

})

};

};


App.service('fileService', function () {
 var file = {};
 var fileService = {};

 fileService.getFile = function (name) {
     return file[name];
};

 fileService.setFile = function (newFile, index, name) {
    if (index === 0 && file[name] === undefined)
    file[name] = [];
   file[name][index] = newFile;

 };

 return fileService;
})

 App.directive('myFileUpload', function (fileService) {
 return function (scope, element, attrs) {
     element.bind('change', function () {
      var index;

       var index_file = 0;
       for (index = 0; index < element[0].files.length; index++) {
       fileService.setFile(element[0].files[index], index_file, attrs.myFileUpload);
        index_file++;
    }
    index_file = 0;

  });
  }
 });

我的弹簧控制器是

@RequestMapping(value="/saveblog", method=RequestMethod.POST, headers = "'Content-Type': 'multipart/form-data'")
public void saveblog(MultipartHttpServletRequest request, HttpServletResponse response)
{

    System.out.println("in multipart ");
    Iterator<String> itr=request.getFileNames();

    MultipartFile file=request.getFile(itr.next());

    String fileName=file.getOriginalFilename();
    System.out.println(fileName);

}

我还为多部分创建了一个豆

i also create a bean for multipart

  <bean id="multipartResolver"                class="org.springframework.web.multipart.commons.CommonsMultipartResolver">
<property name="maxUploadSize" value="2097152" />
</bean>

在那之后仍然有例外

我的响应标头是

after that still got exception

my response header is

HTTP/1.1 404 Not Found
Server: Apache-Coyote/1.1
Content-Type: text/html;charset=utf-8
Content-Language: en
Content-Length: 949

我的请求标头是

POST /technoblogs/blog/saveblog HTTP/1.1
Host: localhost:8080
Connection: keep-alive
Content-Length: 209
Accept: application/json, text/plain, */*
Origin: http://localhost:8080
User-Agent: Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36    (KHTML, like Gecko) Chrome/43.0.2357.130 Safari/537.36
Content-Type: multipart/form-data; boundary=----WebKitFormBoundary7uIEu9ax8IY8nCde
Referer: http://localhost:8080/technoblogs/blog/
Accept-Encoding: gzip, deflate
Accept-Language: en-US,en;q=0.8
Cookie: JSESSIONID=61816E4AB7F6905F688755CF22BC16FF

推荐答案

也许此链接会为您提供帮助.您缺少的是内容标题.

Maybe this link will help you. What you are missing is a content header.

来自链接的答案:

即使将Content-Type设置为正确的值multipart/form-data,Angular也将以JSON形式发布.因此,我们必须手动将请求转换为正确的数据. …[使用] transformRequest函数,该函数不执行返回原始FormData的操作…

Angular will POST as JSON even if you set the Content-Type to the correct value multipart/form-data. So we must transform our request manually to the correct data. … [using] a transformRequest function that does nothing as returning your original FormData … like this:

$http({
    method: 'POST',
    url: 'newDocument',
    headers: {'Content-Type': 'multipart/form-data'},
    data: formData,
    transformRequest: function(data, headersGetterFunction) {
        return data; // do nothing! FormData is very good!
    }
})

您能告诉我们您的HTTP响应和/或请求吗?

Can you show us your HTTP response and/or request?

这篇关于该请求被拒绝,因为在angularjs和spring mvc中未找到多部分边界的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
相关文章
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆