我有一个带有catch块的全局HttpInterceptor,它处理一个HttpErrorResponse。但我的要求是,当一个服务进行http调用并且还有一个错误处理程序时,我希望服务上的错误处理程序首先关闭。如果此服务上没有错误处理程序,那么我希望全局HttpInterceptor错误处理程序来处理它。
示例代码:
Http Interceptor:
@Injectable()
export class ErrorHttpInterceptor implements HttpInterceptor {
constructor(private notificationService: NotificationService) {}
intercept(req: HttpRequest<any>, next: HttpHandler): Observable<HttpEvent<any>> {
return next.handle(req)
.catch(
error => {
if (error instanceof HttpErrorResponse) {
this.notificationService.error('Error', 'Error in handling Http request');
}
return Observable.empty<HttpEvent<any>>();
}
);
}
}
服务电话:
updateUser(id, data) {
return this.http
.patch(`${API.userUrl}/${id}`, {data: data})
.subscribe(
() => console.log('success'),
(err) => this.notificationService.error('custom code to handle this')
);
}
在这种情况下,ErrorHttpInterceptor提供通知,然后userService错误处理也会给出错误通知。
但是在我的用例中,我希望ErrorHttpIntercetor仅在基础订阅没有处理错误时才处理错误。有没有办法做到这一点?
答案 0 :(得分:2)
要解决的一种方法是通过请求传递httpHeaders
:
request() {
const url = 'GoalTree/GetById/';
let headers = new HttpHeaders();
headers = headers.append('handleError', 'onService');
this.http.get(url, {headers: headers})
.pipe(
map((data: any) => {
this.showError = false;
}),
catchError(this.handleError)
)
.subscribe(data => {
console.log('data', data);
})
}
<强> Interceptor.ts:强>
intercept(req: HttpRequest<any>, next: HttpHandler): Observable<HttpEvent<any>> {
this.spinnerService.show();
return next.handle(req).do(
(event: HttpEvent<any>) => {
if (event instanceof HttpResponse) {
this.spinnerService.hide();
}
},
(err: any) => {
if (req.headers.get('handleError') === 'onService') {
console.log('Interceptor does nothing...');
} else {
console.log('onInterceptor handle ', err);
}
}
);
}
并检查interceptor
错误回调中的请求标头。
但是在这个解决方案中,拦截器会在任何服务调用之前处理请求。