如何让ajax响应从快到慢?
- 同时发送的请求
- 不需要等待所有响应解析
示例:同时发送 3 个请求
axios.get(url1)
需要 1s 才能获得响应 axios.get(url2)
需要2秒才能得到响应 axios.get(url3)
需要3秒才能得到响应 如何获得像 res1 然后 res2 然后 res3 这样的响应? Promise.all 和 Promise.race 不能这样做(因为 all 会等待最低响应而不是从最快到最慢返回,而 race 会返回最快而不是全部)
- requests send simultaneously
- don't need to wait all response resolved
example: there are 3 request sending simultaneously
axios.get(url1)
needs 1s to get responseaxios.get(url2)
needs 2s to get responseaxios.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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果所有 URL 都在一个数组中,您只需循环遍历该数组,对每个 URL 调用
axios.get()
即可。If all the URLs are in an array, you can simply loop over the array, calling
axios.get()
on each one.