umbot - v2.0.8
    Preparing search index...

    Function httpBuildQuery

    • Преобразует объект параметров в URL-строку запроса

      Parameters

      • formData: IGetParams

        Объект с параметрами

      • Optionalseparator: string = '&'

        Разделитель параметров

      Returns string

      URL-строка запроса

      const params = {
      name: 'John Doe',
      age: '25'
      };

      httpBuildQuery(params);
      // -> 'name=John+Doe&age=25'

      httpBuildQuery(params, ';');
      // -> 'name=John+Doe;age=25'