gpt4 book ai didi

angular - RXJS - 多个连续的 http 请求

转载 作者:行者123 更新时间:2023-12-01 21:50:12 25 4
gpt4 key购买 nike

source<http>
.pipe(
switchMap(d => this.http.get(d))
.pipe(
switchMap(j => this.http.get(j))
)
)
.subscribe()

你好,我需要连续发出 3 个 http 请求,其中每个调用都包含下一个调用的数据。嵌套开关映射是这种情况下的最佳做法吗?

最佳答案

您不需要嵌套它们。您可以简单地将它们链接起来:

source<http>
.pipe(
switchMap(d => this.http.get(d)),
switchMap(j => this.http.get(j))
)
.subscribe()

除此之外,使用多个 switchMap 是可行的方法。

关于angular - RXJS - 多个连续的 http 请求,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59570873/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com