合并可观察变量,但同时返回两者

时间:2019-03-06 10:16:40

标签: angular rxjs observable

我想将两个可观测对象与第二个可观测对象合并,需要第一个对象的结果。

足够简单:

const booking$ = this.service.getBooking$(bookingId);

const result$ = booking$.pipe(mergeMap(booking => this.service.getMoreData$(booking.someField))

但是result $的返回类型只是“ getMoreData $”的结果。

如何同时返回booking $和getMoreData $?有特定的运算符吗?

0 个答案:

没有答案