如何让ajax响应从快到慢?

发布于 2025-01-17 04:28:39 字数 310 浏览 0 评论 0原文

  1. 同时发送的请求
  2. 不需要等待所有响应解析

示例:同时发送 3 个请求

axios.get(url1) 需要 1s 才能获得响应 axios.get(url2) 需要2秒才能得到响应 axios.get(url3) 需要3秒才能得到响应 如何获得像 res1 然后 res2 然后 res3 这样的响应? Promise.all 和 Promise.race 不能这样做(因为 all 会等待最低响应而不是从最快到最慢返回,而 race 会返回最快而不是全部)

  1. requests send simultaneously
  2. don't need to wait all response resolved

example: there are 3 request sending simultaneously

axios.get(url1) needs 1s to get response
axios.get(url2) needs 2s to get response
axios.get(url3) needs 3s to get response
how to get responses like res1 then res2 then res3 ?
promise.all and promise.race can not do this(because all will wait the lowest response not return from fastest to slowest, and race will return the fastest not all)

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

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

发布评论

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

评论(1

烙印 2025-01-24 04:28:40

如果所有 URL 都在一个数组中,您只需循环遍历该数组,对每个 URL 调用 axios.get() 即可。

urls.forEach(url => axios.get(url).then(response => { process the response }));

If all the URLs are in an array, you can simply loop over the array, calling axios.get() on each one.

urls.forEach(url => axios.get(url).then(response => { process the response }));
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文