我正在尝试发送一些自定义HTTP标头,以便从客户端发送,以便我可以知道问题的原因并向用户显示正确的消息。我无法从下面的代码中获取响应头(它显示为null)。
this.myService.getAllUsers().subscribe(results => {
console.log(results)
},
error => {
console.log(error.headers.get("ErrorCode"));
});
但是从浏览器(chrome)我可以看到我在响应中有标题。 Look at the image here
我期待看到值“INVALID_SESSION”作为控制台输出。
但是改为null。有人可以帮忙吗?
答案 0 :(得分:1)