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