0

我的后端是spring boot 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);
}
);
4

1 回答 1

2

您是否允许/在服务器上使用 CORS 公开这些标头?

于 2017-10-05T02:46:57.950 回答