我有一个HttpInterceptor来捕获错误并在模态中显示它们。除了错误代码和消息之外,我还想显示响应的主体,它实际上包含更准确的错误描述(例如,在500内部服务器错误上)。 我怎样才能在角度上实现这一目标? (我使用的是4.3.6版本。)
我已经查看了相关问题但是像HttpErrorResponse._body或类似的答案对我不起作用。 此外,在控制台中检查错误响应时,HttpErrorResponse.error设置为null。
以下是我的拦截器目前的样子:
@Injectable()
export class HttpErrorInterceptor implements HttpInterceptor {
public constructor(private httpErrorService: HttpErrorService) { }
public intercept(req: HttpRequest<any>, next: HttpHandler): Observable<HttpEvent<any>> {
return next.handle(req).do(event => {
}, (error: HttpErrorResponse) => {
console.log('HTTPERROR INTERCEPTOR');
console.log(error);
if (error.status >= 400) {
this.httpErrorService.onError(error);
}
});
}
}
答案 0 :(得分:14)
正文应该在error
属性中可用,所以:
return next.handle(req).do(event => {
}, (error: HttpErrorResponse) => {
console.log(error.error); // body
...
});
以下是实施的要点from the sources:
if (ok) {
...
} else {
// An unsuccessful request is delivered on the error channel.
observer.error(new HttpErrorResponse({
// The error in this case is the response body (error from the server).
error: body, <--------------------
headers,
status,
statusText,
url: url || undefined,
}));
}
要了解有关拦截器背后力学的更多信息,请阅读:
答案 1 :(得分:2)
为了充分利用Typescript,我通常创建一个扩展HttpErrorResponse的接口:
interface APIErrorResponse extends HttpErrorResponse {
error: {
id?: string
links?: { about: string }
status: string
code?: string
title: string
detail: string
source?: {
pointer?: string
parameter?: string
}
meta?: any
}
}
之后,只需将APIErrorResponse而不是HttpErrorResponse分配给您的错误对象,并如上所述访问服务器的自定义错误:error.error