AngularJs实现表单文件的上传

AngularJs实现表单文件的上传

一:传统的表单提交方式

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

二: angularjs处理文件上传

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

通过设置 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");
                   }); 

 }
});

注意:上面的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.

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

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值