需求
码
const reqPool = ( fn, arr, max = 3 , order = false , retry = 1 ) => { let reqList = [ ... arr] , resData = order ? Array ( reqList. length) . fill ( 0 , 0 ) : [ ] , curRuningCount = 0 , runedCount = 0 , runingIndex = 0 ; return new Promise ( res => { const run = _ => { while ( curRuningCount < max && reqList. length) { curRuningCount++ const chunk = reqList. shift ( ) ; ( i => { let _retry = 0 const add = ( i2, data ) => fn ( data) . then ( r => { runedCount++ order ? resData[ i2] = r : resData. push ( r) } ) . catch ( err => { _retry++ const repMore = _retry > retryif ( ! repMore) { add ( i2, data) console. log ( data, '重试' + _retry + '次' ) ; } else { order ? resData[ i2] = err : resData. push ( err) runedCount++ } } ) . finally ( _ => { curRuningCount-- if ( runedCount === arr. length) res ( resData) run ( ) } ) ; add ( i, chunk) } ) ( runingIndex++ ) } } run ( ) } )
}
const chunks = [ 1 , 2 , 3 , 4 , 5 , 6 , 7 , 8 , 9 , 10 ] ;
const req = chunk => new Promise ( ( res, rej ) => setTimeout ( _ => Math. random ( ) > .8 ? rej ( '失败----' + chunk) : res ( '结果' + chunk) , Math. random ( ) * 100 + 100 ) ) reqPool ( req, chunks, 3 , true ) . then ( res => console. log ( res) )
运行图