使用javascript中的axios来实现并发
const request=()=>{ //请求的地址 const httpUrl=['http://xxxx1','http://xxxx1'...]; //控制并发数量在10条 const COUNT=10; const next=()=>{ const while(Math.min(httpUrl.length,COUNT)){ const taskHttp=httpUrl.shift(); axios(taskHttp).then(res=>{ }).fanlly(()=>{ if(Math.min(httpUrl.length,COUNT)>0){ next(); } }) } } }