在Angular4 HttpClient.get中,没有返回任何自定义标头

时间:2017-10-05 02:28:55

标签: angular spring-boot httpclient custom-headers

我的后端是弹簧靴1.5.7,前端是angular4.4.3,

响应不包括所有标头实际上它只包括缓存控制,内容类型,编译指示和过期 而自定义标题不在那里,同时邮递员显示所有其他标题都被返回

constructor(private http2: HttpClient) { }   
listAll{ this.http2.get<ItemsResponse>('http://mysite:8080' , {observe: 'response'}).subscribe(resp => {
console.log(resp.headers.get('xyz'));
console.log(resp.body.response);
}
);

1 个答案:

答案 0 :(得分:2)

您是否在服务器上允许/公开带有CORS的标头?