如果出现错误,我想在HttpInterceptor
中以角度获取响应头。
我在Interceptor中尝试了以下代码,但在控制台中却为空。
intercept(req: HttpRequest<any>, next: HttpHandler):
Observable<HttpSentEvent | HttpHeaderResponse | HttpProgressEvent | HttpResponse<any> | HttpUserEvent<any>> {
return next.handle(this.addHeader(req, this.getAuthToken())).pipe(
catchError(error => {
console.log(error.headers.get('errorCode'));
console.log(error.headers.get('message'));
return throwError(error);
})
);
}
下面是浏览器的“网络”标签中的响应标头。