Преобразует объект параметров в URL-строку запроса
Объект с параметрами
Optional
Разделитель параметров
URL-строка запроса
const params = { name: 'John Doe', age: '25'};httpBuildQuery(params);// -> 'name=John+Doe&age=25'httpBuildQuery(params, ';');// -> 'name=John+Doe;age=25' Copy
const params = { name: 'John Doe', age: '25'};httpBuildQuery(params);// -> 'name=John+Doe&age=25'httpBuildQuery(params, ';');// -> 'name=John+Doe;age=25'
Преобразует объект параметров в URL-строку запроса