解决for循环中异步请求顺序不一致的问题
Posted mo3408
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了解决for循环中异步请求顺序不一致的问题相关的知识,希望对你有一定的参考价值。
for循环,再把循环出来的ID再进行二次请求
这就导致一个问题
请求结果返回顺序不一致
原因:异步请求会把回调事件放入微任务事件队列,宏任务执行完毕再执行微任务,具体参考事件队列机制
解决方法:
通过map方法进行循环请求
将异步请求方法封装起来,返回一个promise
这样将会返回一个具有多个promise的数组
通过promise.all()方法把promise包装成一个新的promise实例
1 // 通过Promise把所有的异步请求放进事件队列中 2 3 getInfo(item ,index) { 4 5 const ms = 1000 * Math.ceil(Math.random() * 3) 6 7 return new Promise((resolve,reject) => { 8 9 setTimeout(() => { 10 11 axios.get(id).then((result) => { 12 13 resolve(result) 14 15 }) 16 17 }, ms) 18 19 }) 20 21 } 22 23 24 25 // 返回多个promise 26 27 let promise = arr.map((item,index) = > { 28 29 arr.forEach((item, index) => { 30 31 return getInfo(item, index) 32 33 }) 34 35 }) 36 37 // 对返回的promise数组进行操作 38 39 Peomise.all(promise).then((allData) => { 40 41 arr.forEach((item, index) => { 42 43 // ...... 44 45 }) 46 47 })
以上是关于解决for循环中异步请求顺序不一致的问题的主要内容,如果未能解决你的问题,请参考以下文章
NodeJS,如何强制异步 for 循环在传递到下一次迭代之前等待 HTTP 请求解决,这样我们就不会收到 EMFILE 错误?
06 Spring 异步执行,任务调度(@Schedule、@Async)