从Angular中的HttpClient post请求获取响应头?

问题描述 投票:3回答:2

我正在尝试从post请求中获取响应头,但是HttpResponse对象不包含我在网络中可以看到的相同头。我究竟做错了什么?我需要访问Apiproxy-Session-Id键的值,它不存在于HttpHeaders中。

这是我执行post请求并记录完整响应的代码,其中http是一个HttpClient对象。

this.http.post('http://localhost:8081/user/login', JSON.stringify(requestBody), {observe: 'response'}).subscribe(resp => { console.log(resp); });

This is the response I'm logging.

These are the headers I'm seeing in the network.

我是Angular的新手并且非常难过。谢谢你的帮助!

angular http-headers httpresponse angular-http angular-httpclient
2个回答
4
投票

嘿,我在这里遇到同样的问题。由于您的后端和前端位于不同的域上,因此默认情况下不会公开响应的某些标头。

您可以尝试两种不同的方法:

1.代理您对Angular的请求

有了这个,代理将使你的后端认为请求来自sabe域。请参阅this doc以了解如何操作。请记住,使用此选项将显示所有标头。

2.在后端服务器上公开所需的标头

由于我不知道你后端的语言,我不能一步一步地告诉你,但是我必须在响应上做这样的事情:response.add("Access-Control-Expose-Headers", "Apiproxy-Session-Id")


0
投票

尝试添加responseType: 'text'

this.http.post('http://localhost:8081/user/login', 
    JSON.stringify(requestBody), {observe: 'response', responseType: 'text'}).subscribe(resp => {
        console.log(resp);
    });
© www.soinside.com 2019 - 2024. All rights reserved.