除了在 RxJS 的下一个 pipable 运算符中获取其响应数据之外,我还想传递 URL。您认为实现这一目标的最明智的方法是什么?提前致谢。
这是一个例子。 https://stackblitz.com/edit/angular-rxjs-passing-data-to-next-operator-question
我尝试了一些运算符,但找不到合适的运算符。(实际上,我什至不知道为什么传递返回 observablemergeMap
的函数会导致在 next 运算符中获取数据作为函数的参数......)
from([
'https://jsonplaceholder.typicode.com/posts',
'https://jsonplaceholder.typicode.com/comments',
'https://jsonplaceholder.typicode.com/albums',
])
.pipe(
mergeMap(url => this.getData(url)),
tap(posts => console.log(posts[0])), // I want to get url too here!!
).subscribe();
我希望在 pipable 运算符中获得 url 及其响应数据。