Ng文件上传标题被覆盖

时间:2016-10-12 14:29:22

标签: angularjs ng-file-upload

我在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覆盖。我无法删除添加,因为它会影响我的其他请求。

有人可以帮忙吗?

0 个答案:

没有答案