Rxjs 拼接请求比较优雅的方式

发布于 2022-09-11 19:11:32 字数 923 浏览 11 评论 0

想用rxjs 解决请求拼接发送的场景: 下一个请求需要上一个请求的结果。

最原始的方式,或者使用async,效果类似。

fetch('http://api.manster.me/p1').then((p1) => p1.json())
  .then((res) => {
    fetch('http://api.manster.me/' + res.next)
      .then((res) => res.json()).then((res) => {
        fetch('http://api.manster.me/' + res.next)
          .then((res) => res.json()).then((res) => {
            console.log(res);
          })
      })
  })

用rxjs(v6)改了一般,总感觉不太优雅

const s1 = from(fetch('http://api.manster.me/p1').then(res => res.json()));
const p =
    s1.pipe(
        mergeMap((res) => from(fetch('http://api.manster.me/' + res.next).then(res => res.json()))),
        mergeMap((res) => from(fetch('http://api.manster.me/' + res.next).then(res => res.json())))
    )

p.subscribe(console.log)

怎么把 then(res => res.json()) 干掉?
请赐教一个好的写法。感谢

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

携君以终年 2022-09-18 19:11:32

把一些相同的逻辑封装起来

const get = url => fetch(url).then(res => res.json())

/**
 * @param {string} api 需要请求的 api
 */
const getApi = api => get(`http://api.manster.me/${api}`)

from(getApi(`p1`))
  .pipe(
    flatMap(res => getApi(res.next)),
    flatMap(res => getApi(res.next)),
  )
  .subscribe(console.log)

如果下一个请求的逻辑一样的话,还可以把 next 封装起来

const getNext = res => getApi(res.next)

from(getApi(`p1`))
  .pipe(
    flatMap(getNext),
    flatMap(getNext),
  )
  .subscribe(console.log)
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文