在一个项目中,我们同时使用了Http& HttpClient获取头部参数。 Http返回标题参数,但HttpClient没有。
constructor(private http: Http, private httpClient: HttpClient) {}
getContent() {
const url = '';
return this.http.post(url, data)
.map((res: HttpResponse<any>) => {
console.log('http content', res);
});
return this.httpClient.post(url, data, { observe: 'response' })
.map((res: HttpResponse<any>) => {
console.log('httpClient content',res);
});
}
在控制台中检查时,http会返回带有标题的响应,但httpClient会在标题中返回一个空数组。
在浏览器检查器的“网络”选项卡中选中时,它会显示所有标头参数。
服务器接受以下CORS选项:
origin: '*',
methods: 'GET,HEAD,PUT,PATCH,POST,DELETE',
allowedHeaders: 'Origin,X-Requested-With,x-access-token,Content-Type,Authorization,Accept,jwt',
exposedHeaders: 'Content-Type,Authorization,jwt'
请帮我弄清楚如何使用httpClient获取标题。
提前致谢。
答案 0 :(得分:10)
您使用HttpClient处于正确的轨道上。您应该在标题上使用get()
方法。
this.httpClient.post(url, data, {observe: 'response'})
.map((res: HttpResponse<any>) => {
let myHeader = res.headers.get('my-header');
return res;
});
my-header
是您尝试获取的标头响应。