我必须在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响应中获取自定义标头?