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