我在ng-file -upload
覆盖的标题中遇到问题。
Upload.http({
url:URL
headers:{'Content-Type': application/json},
data: file
}).progress(function(evt) {
file.progress = Math.min(100, parseInt(100.0 *
evt.loaded / evt.total));
}).success(function(response) {
}).error(function(response) {
});
我真正想要的是将内容类型传递为null或undefined。问题是我已经配置了chrome modify header add,以便为所有请求添加标头。
我只希望文件上传请求的内容类型为“空”。 但是当我添加header参数时,它会被add on覆盖。我无法删除添加,因为它会影响我的其他请求。
有人可以帮忙吗?