Field | Type | Description |
parallel? | number | Optional; concurrent count, defaults to 20. |
import http from 'pts/http';export default function () {const responses = http.batch([{method: 'GET',url: 'http://httpbin.org/get?a=1',headers: { a: '1, 2, 3' },query: { b: '2' },}{method: 'GET',url: 'http://httpbin.org/get?a=1',headers: { a: '1, 2, 3' },query: { b: '2' },}]// BatchOption configuration options.{parallel: 1,});console.log(JSON.stringify(responses));}