在使用带有图像和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);
});