我想访问我为我的应用程序获取的请求的httpHeaders,以便我可以检查在请求标头中发送的accountID。
我写了下面的代码来达到目的,
this.http.get<any>(this.config.baseUrl + this.config.schemaName +"/login",
{observe: 'body'})
.subscribe(resp => {
debugger;
resp.headers.add("Access-Control-Expose-Headers", "AUTH-TOKEN, X- Custom")
console.log(resp.headers.get('AUTH-TOKEN'));
});
但是我收到一条错误消息,说我在运行未定义观察
请帮助
预先感谢