发布多部分数据时,angularjs会转换为字符串

时间:2016-01-11 13:53:32

标签: javascript angularjs angularjs-http

在使用带有图像和angularjs中的其他字段的多部分数据发送POST请求时,布尔值会转换为字符串,如何解析它。

var fd=new FormData();
 fd.append('name',$scope.spname);
 fd.append('profile_picture',$scope.cmpylogo);
 fd.append('new_picture',false);
 $http({method:'POST',
   url:BaseUrl.url+'/speaker/',
   data:fd,
   transformRequest: angular.identity,
   headers: {'Content-Type': undefined}
 }).then(function success(response){
    console.log(response.data);
 });

0 个答案:

没有答案