Angular HttpClient无法读取响应头

时间:2017-12-31 17:41:47

标签: angular azure-functions angular-httpclient

我想从这样的帖子中获取响应中的位置标题:

this.httpClient.post<Response>(url, data, { observe: 'response'}).subscribe(response => {
     const locationHeader = response.headers.get('Location');     
});

但没有标题可用。检查fiddler中的流量验证响应中是否存在标题...为什么Location头不出现在httpclient的headers属性中?

options request

post with location in response

编辑1:在本地为后端api使用azure函数模拟器。我的理解是,默认情况下,这应该允许基于此的所有标头:Configuring Access-Control-Allow-Headers in Azure Functions

编辑2:带有标题的样本请求中的图像。

0 个答案:

没有答案