rxjs中多次调用的角度处理错误

Posted

技术标签:

【中文标题】rxjs中多次调用的角度处理错误【英文标题】:Angular handle error with multiple call in rxjs 【发布时间】:2021-02-10 20:49:36 【问题描述】:

我不知道在这种特殊情况下使用 rxjs 处理 html 错误的最佳方法:

组件.ts

private open() 
  this.openSubscription = this.openService
    .open(this.id)
    .subscribe(res => 
      if (res) 
        // do something with result
       else 
        this.openInError = true;
      
    );

open.service.ts

open(id: number): Observable<OpenContext> 
  const openContextObservable = new Observable<OpenContext>(
  observer => 
  this.openApiService
    .first(id)
    .pipe(
      catchError(err => of(err))
    )
    .subscribe(res => 
      this.openApiService
        .second(res.param1)
        .pipe(
          map(result=> 
            // do something with the result
            observer.next(openContext);
            observer.complete();
          ),
          catchError(err => of(err))
        )
    )
)

在 service-api 中,我只是返回 this.http.post(...) 并带有一些参数作为 Observable

我想先捕获错误并在组件的订阅中处理它(订阅(res => ...,err => ...))。 实际上,如果'first'出错,它会调用'second',即使它需要'first'的结果,之后它不会返回错误,只是如果订阅中没有响应,我会处理。

执行此操作并拥有干净代码的最佳方法是什么?我用 throwError 测试过,...但我被阻止了...

所以组件中的预期代码是:

private open() 
  this.openSubscription = this.openService
    .open(this.id)
    .subscribe(
    res => 
      if (res) 
        // do something with result
      
    ,
    err => 
      if (err) 
        this.openInError = true;
      
    );

或与 .pipe 和 map 等效的东西。

【问题讨论】:

【参考方案1】:

1.) 删除catchErrors,因为这将捕获错误并将错误流转换为非错误流。

2.) 使用 switchMap 而不是嵌套订阅。

open.service.ts

import  switchMap  from 'rxjs/operators';
....
open(id: number): Observable<OpenContext> 
  // you can get rid of openContextObservable as well.
  return this.openApiService
    .first(id)
    .pipe(
      // switch to this observable from the first one
      switchMap(res => this.openApiService.second(res.param1)),
      map(result => 
        // do stuff and transformations here but make sure you return result for your subscriber.
        return result;
      )
    );
)

组件

private open() 
  this.openSubscription = this.openService
    .open(this.id)
    .subscribe(
    res => 
      if (res) 
        // do something with result
      
    ,
    err => 
      if (err) 
        this.openInError = true;
      
    );

【讨论】:

以上是关于rxjs中多次调用的角度处理错误的主要内容,如果未能解决你的问题,请参考以下文章

开玩笑不处理 RxJS observable 的 subscribe() 中的 expect() 错误

角度 4 上的 rxjs-websockets,处理重新连接

错误记录Android 编译时技术报错 ( 注解处理器 process 方法多次调用问题 )

node_modules/rxjs/internal/types.d.ts 中的角度错误

AngularJS / rxjs:订阅时观察不到错误

如何使用 rxjs 算子多次获取最近的值