首页 > 解决方案 > Rxjs map() 函数的参数为​​空

问题描述

我有以下内容INterceptorAngular

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没有收到响应。userServicemap()

标签: angularrxjsangular7

解决方案


我认为您的问题是您在tap运营商内返回。

据我记得,tap总是返回void,这可能是一个问题,不是吗?


推荐阅读