微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

angularjs与springmvc文件上传

AngularJs实现Multipart/form-data 文件的上传


https://blog.csdn.net/wei389083222/article/details/51289704


AngularJs实现Multipart/form-data 文件上传

由于公司的需要,我们从java后台传统的JSP转向了使用前后台完全分离的模式来进行开发。后台完全提供接口,可供网页PC端和移动app端调取来获取数据。前台使用anjularjs来展示数据。

废话不多说了,直接进入主题吧。

一. 传统的表单提交文件是这样的
前台

<from action="your url" method="post"         enctype="multipart/form-data">
    <input type="file" name="logo">
    <input "submit" value="提交">
    </from>
  • 1
  • 2
  • 3
  • 4

后台springmvc的接受:

@ApiOperation(value = "上传文件",notes = "上传文件test",responseClass = "DataVo")
    @RequestMapping("/upload",produces = { "application/json" },method =RequestMethod.POST )
    public @ResponseBody DataVo upload(
    @ApiParam("logo",required = true) @RequestParam(true) multipartfile logo,HttpServletRequest request){
    //这里的logo就是接受的文件
    if(logo!=null){
       //进行操作吧
        System.out.println(logo.getoriginalFilename());
    }
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10

二. anjularjs的处理文件上传
前台

<div ng-controller="UploaderController" >
    input type="file" file-model="myFile" >
    button ng-click="save()" >保存</button>
div>
    js文件
    这里要注意的是,因为是通过anjularjs的http请求来上传文件的,所以要让当前的request成为一个Multipart/form-data请求,anjularjs对于post和get请求认的Content-Type header 是application/json。通过设置‘Content-Type’: undefined,这样浏览器不仅帮我们把Content-Type 设置为 multipart/form-data,还填充上当前的boundary,如果你手动设置为: ‘Content-Type’: multipart/form-data,后台会抛出异常:the current request boundary parameter is null。
    ps:
    通过设置 transformRequest: angular.identity ,anjularjs transformRequest function 将序列化我们的formdata object.

    $scope.save = function() {    
            var fd = new FormData();
            var file = document.querySelector('input[type=file]').files[0];
            fd.append('logo',file); 
             $http({
                  method:'POST',url:"your url",data: fd,headers: {'Content-Type':undefined},transformRequest: angular.identity 
                   })   
                  .success( function ( response ) {
                           //上传成功的操作
                           alert("uplaod success");
                           }); 
    
         }
        });
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20

    后台:同1中的后台

    ps:上面的file的获取还可以通过:var file = $scope.myFile.同时要注意在js中 data: fd,不能像普通的参数一样写为:params:{ fd,…},具体的解释是:
    官方文档

    params – {Object.<string|Object>} – Map of strings or objects which will be serialized with theparamSerializer and appended as GET parameters.
    data – {string|Object} – Data to be sent as the request message data.
    • 1
    • 2

    在GET方法中可以使用params ,在POST/PUT/PATCH/DELETE中不能使用params 来传递数据,要使用data来传递。

    三.小结 这样就实现了简单的anjularjs文件上传,自己总结了一下,希望可以帮助到大家,加油!

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐