我想将两个可观测对象与第二个可观测对象合并,需要第一个对象的结果。
足够简单:
const booking$ = this.service.getBooking$(bookingId);
const result$ = booking$.pipe(mergeMap(booking => this.service.getMoreData$(booking.someField))
但是result $的返回类型只是“ getMoreData $”的结果。
如何同时返回booking $和getMoreData $?有特定的运算符吗?