var formData = new FormData();
formData.append('imgData', imgData);
return $http({
url: url,
headers: {"Content-Type": undefined },
data: formData,
method: "post"
});
将内容类型标头设置为undefined
,必须设置这个才行。通常$http 服务将内容类型设置为application/json
. 当内容类型为 时undefined
,XHR API会自动将内容类型设置为multipart/form-data
具有适当的多部分边界
网友评论