代码class PromisePool { constructor(max, fn) { this.max = max; //最大并发量this.fn = fn; //自定义的请求函数this.pool = []; //并发池this.urls ...
確定! 回上一頁