尝试使用 Angular 上传图片$http.post()
我是这样设置file
的,文件输入中的第一个文件在哪里。
var fd = new FormData();
fd.append("content", file);
fd.append("binary", true);
运行它会正确上传文件:
var xhr = new XMLHttpRequest();
xhr.addEventListener("load", function(){alert("Done!");}, false);
xhr.open("POST", path);
xhr.send(fd);
但我想使用 angulars $http。所以我这样做了,但没有正确上传:
$http({
method: 'POST',
url: path,
data: fd
});
我错过了什么?我尝试将标题设置为多部分,但仍然没有骰子。