带有自定义标头的FileUploader

时间:2017-03-14 09:48:52

标签: angular

我正在使用ng2-file-upload来上传文件。我需要设置一个自定义标题。这就是我所拥有的:

this.uploader =  new FileUploader({url: this.uploadUrl, itemAlias: 'files', headers: [{name: 'accept', value: 'application/json'}] });

当我检查服务器端的标题时

Request.Headers["accept"]

我看到的只是"*/*"

如何设置自定义标题?

1 个答案:

答案 0 :(得分:0)

如果标题使用HTTP标题,您可以使用标题。

import {Headers} from '@angular/http';

let headers = new Headers();
headers.append('Content-Type', 'application/json');

this.uploader =  new FileUploader(
   {url: this.uploadUrl, itemAlias: 'files', headers }
);