选择哪个 RxJS 操作符来处理 HTTP 错误:tap 还是 catchError?

yac*_*uat 13 rxjs angular-httpclient

/* error handler that will be used below in pipe with catchError() 
 * when resource fetched with HttpClient get() */

private _handleError<T> (operation: string, result?:T) {
     return( error: any): Observable<T> => {
          console.error( operation + ' ' + error.message );
          // or something else I want to do
          return of(result as T); // lets me return innocuous results
     }
}

getObjects() {
  return this.http.get<any[]>(this.myUrl).pipe(
    catchError(this._handleError('my error', [])
  );
}
Run Code Online (Sandbox Code Playgroud)

现在tap用于处理错误

getObjects() {
  return this.http.get<any[]>(this.myUrl).pipe(
    tap( objects => {
      // whatever action like logging a message for instance
    }, err => {
      console.error(err);
      // whatever else I want to do
    })
  );
}
Run Code Online (Sandbox Code Playgroud)

为什么我应该选择一种方法而不是另一种方法?处理 HTTP 错误是否会tap()保持我的应用程序运行,以防它们发生?

sat*_*ime 13

tap 是造成副作用。

catchError 是在流中捕获错误并尝试处理它们。

因此,如果您想处理http请求的错误,请使用catchError.

http.get('https://test.com/').pipe(
    tap(
        () => {
            // 200, awesome!, no errors will trigger it.
        },
        () => {
            // error is here, but we can only call side things.
        },
    ),
    catchError(
        (error: HttpErrorResponse): Observable<any> => {
            // we expect 404, it's not a failure for us.
            if (error.status === 404) {
                return of(null); // or any other stream like of('') etc.
            }

            // other errors we don't know how to handle and throw them further.
            return throwError(error);
        },
    ),
).subscribe(
    response => {
        // 200 triggers it with proper response.
        // 404 triggers it with null. `tap` can't make 404 valid again.
    },
    error => {
        // any error except 404 will be here.
    },
);
Run Code Online (Sandbox Code Playgroud)

  • 不完全是,tap 有第二个参数,出错时将调用该参数;) (3认同)