Angular 2+:Blob响应中的自定义HTTP标头

时间:2017-06-26 13:24:13

标签: angular http blob response custom-headers

我必须在Angular 2+应用程序中获取nodejs后端发送的自定义HTTP标头。

为此,我使用以下代码:

const custom-header = res.headers.get('custom-header');

它适用于默认的请求和响应,但是当我使用:

指定Blob类型时
let options = this._appService.getOptions();
options.responseType = ResponseContentType.Blob;

return this._http.get(this._appService.backEndUrl + '/information/getFile?filename=' + nameFile, options);

自定义标题在Angular中不可用(尽管在浏览器网络查看器中可见)。

如何在Blob响应中获取自定义标头?

0 个答案:

没有答案