如何在地图中为“主题观察者”调用异常?

时间:2019-01-26 19:48:15

标签: angular rxjs angular2-observables

我有这个0bserver主题:

public subject = new Subject<any>();

我这样推送消息:

this.subject.next({value : 1});

然后我尝试执行以下操作:

this.subject.map(data => {
      if (!data || !data.value) {
        throw new Error('No value, no function...');
      } else {
        return data;
      }
    }).subscribe((data: IFilterCustom) => {
      // WORK HERE WITH FILLED DATA
}, err => {
  console.error('Error');
});

我尝试检查传入的数据是否不包含value我调用了异常。该怎么做?

1 个答案:

答案 0 :(得分:1)

在最新的rxjs中,您使用管道执行此操作:

import { map, catchError } from 'rxjs/operators'
import { of } from 'rxjs'

this.subject.pipe(
  map((data) => {
    if (!data || !data.value) {
      throw new Error('No value, no function...');
    } else {
      return data;
    }
  }),
  catchError(() => {
    console.log('Error')
    return of(null) // Be sure to return an observable here! The 'of' function creates an observable out of the argument
  })
)

一旦在可观察对象中引发了错误,将调用catchError部分。这对于捕获请求中的任何网络错误也很有用。

如果您不需要错误处理,而只需要主题不发出值,则可以使用过滤器

import { filter } from 'rxjs/operators'

this.subject.pipe(
  filter((data) => {
    return (data && data.value)
  })
)