我在INterceptor
中具有以下Angular
。
intercept(req: HttpRequest<any>, next: HttpHandler): Observable<HttpEvent<any>> {
//handle response
return next.handle(req).pipe(
tap(evt => {
if (evt instanceof HttpResponse) {
if (evt.status == 201) {
this.toastrService.success('Successfully Created',
'Success', this.toastConfig);
}
if (evt.status == 202) {
this.toastrService.success('Successfully Updated',
'Success', this.toastConfig);
}
if (evt.status == 204) {
this.toastrService.success('Successfully Deleted',
'Success', this.toastConfig);
}
}
return of(evt);
}),
catchError((err: any) => {
if (err instanceof HttpErrorResponse) {
if (err.status == 401) {
let strMessage = err.error ? err.error.Message ? err.error.Message : "Authorization Error: You are not allowed to access the requested resource" : "Authorization Error: You are not allowed to access the requested resource";
this.toastrService.warning(strMessage, "Authentication Response", this.toastConfig);
} else if (err.status == 500) {
this.toastrService.error("Oops! Somethign went wrong.", "Internal Error", this.toastConfig)
} else {
this.toastrService.error(err.message, "Error", this.toastConfig);
}
}
return of(err);
})
);
}
然后,我有一个具有以下userService
功能的deleteUser()
:
public deleteUser(id: number): Observable<boolean> {
return this.httpClient.delete<any>(environment.endpoints.user.deleteUserById(id))
.pipe(map(x => {
if (x instanceof HttpResponse) {
return x.status == 204 ? true : false;
}
}))
}
我在组件内通过deleteUser()
对其执行subscribing
功能:
deleteEvent(id: number): void {
this.userService.deleteUser(id)
.subscribe(x => {
if (x) {
this.search(); //refreshes list
}
});
}
我的问题是,.pipe(map(x => {...}
x参数为空。
我正在从HttpResponse
返回Interceptor
,但是在userService
中的map()
中没有收到响应。
这里: