Skip to content

Commit

Permalink
Fix: Don't add null values to query string. (axios#5108)
Browse files Browse the repository at this point in the history
* feat: add  boolean flag to mimic pre 1.x behavior for paramsSerializer custom function

* chore: update ParamsSerializer Readme

* fix: dont slice hash off URL if not appending params

* Omit nulls from formData serialization

* fix: dont add nulls or undefined values to arrays either

* readme update

* fix test

* chore: documentation

* chore: do TS properly

Co-authored-by: Jay <jasonsaayman@gmail.com>
  • Loading branch information
2 people authored and Tbhesswebber committed Oct 15, 2022
1 parent 61c1bb1 commit c665618
Show file tree
Hide file tree
Showing 6 changed files with 37 additions and 15 deletions.
2 changes: 2 additions & 0 deletions README.md 100755 → 100644
Expand Up @@ -358,6 +358,8 @@ These are the available config options for making requests. Only the `url` is re

// `paramsSerializer` is an optional config in charge of serializing `params`
paramsSerializer: {
encode?: (param: string): string => { /* Do custom ops here and return transformed string */ }, // custom encoder function; sends Key/Values in an iterative fashion
serialize?: (params: Record<string, any>, options?: ParamsSerializerOptions ), // mimic pre 1.x behavior and send entire params object to a custom serializer func. Allows consumer to control how params are serialized.
indexes: false // array indexes format (null - no brackets, false (default) - empty brackets, true - brackets with indexes)
},

Expand Down
2 changes: 1 addition & 1 deletion index.d.ts
Expand Up @@ -248,7 +248,7 @@ export interface ParamEncoder {
}

export interface CustomParamsSerializer {
(params: object, options?: ParamsSerializerOptions): string;
(params: Record<string, any>, options?: ParamsSerializerOptions): string;
}

export interface ParamsSerializerOptions extends SerializerOptions {
Expand Down
13 changes: 6 additions & 7 deletions lib/helpers/buildURL.js
Expand Up @@ -35,13 +35,7 @@ export default function buildURL(url, params, options) {
if (!params) {
return url;
}

const hashmarkIndex = url.indexOf('#');

if (hashmarkIndex !== -1) {
url = url.slice(0, hashmarkIndex);
}


const _encode = options && options.encode || encode;

const serializeFn = options && options.serialize;
Expand All @@ -57,6 +51,11 @@ export default function buildURL(url, params, options) {
}

if (serializedParams) {
const hashmarkIndex = url.indexOf("#");

if (hashmarkIndex !== -1) {
url = url.slice(0, hashmarkIndex);
}
url += (url.indexOf('?') === -1 ? '?' : '&') + serializedParams;
}

Expand Down
4 changes: 2 additions & 2 deletions lib/helpers/toFormData.js
Expand Up @@ -168,7 +168,7 @@ function toFormData(obj, formData, options) {
key = removeBrackets(key);

arr.forEach(function each(el, index) {
!utils.isUndefined(el) && formData.append(
!(utils.isUndefined(el) || el === null) && formData.append(
// eslint-disable-next-line no-nested-ternary
indexes === true ? renderKey([key], index, dots) : (indexes === null ? key : key + '[]'),
convertValue(el)
Expand Down Expand Up @@ -205,7 +205,7 @@ function toFormData(obj, formData, options) {
stack.push(value);

utils.forEach(value, function each(el, key) {
const result = !utils.isUndefined(el) && visitor.call(
const result = !(utils.isUndefined(el) || el === null) && visitor.call(
formData, el, utils.isString(key) ? key.trim() : key, path, exposedHelpers
);

Expand Down
25 changes: 23 additions & 2 deletions test/specs/helpers/buildURL.spec.js
Expand Up @@ -8,10 +8,31 @@ describe('helpers::buildURL', function () {

it('should support params', function () {
expect(buildURL('/foo', {
foo: 'bar'
foo: 'bar',
isUndefined: undefined,
isNull: null
})).toEqual('/foo?foo=bar');
});

it('should support sending raw params to custom serializer func', function () {
const serializer = sinon.stub();
const params = { foo: "bar" };
serializer.returns("foo=bar");
expect(
buildURL(
"/foo",
{
foo: "bar",
},
{
serialize: serializer,
}
)
).toEqual("/foo?foo=bar");
expect(serializer.calledOnce).toBe(true);
expect(serializer.calledWith(params)).toBe(true);
});

it('should support object params', function () {
expect(buildURL('/foo', {
foo: {
Expand All @@ -30,7 +51,7 @@ describe('helpers::buildURL', function () {

it('should support array params', function () {
expect(buildURL('/foo', {
foo: ['bar', 'baz']
foo: ['bar', 'baz', null, undefined]
})).toEqual('/foo?foo[]=bar&foo[]=baz');
});

Expand Down
6 changes: 3 additions & 3 deletions test/typescript/axios.ts
Expand Up @@ -6,7 +6,7 @@ import axios, {
AxiosAdapter,
Cancel,
CancelTokenSource,
Canceler, AxiosProgressEvent
Canceler, AxiosProgressEvent, ParamsSerializerOptions
} from 'axios';

const config: AxiosRequestConfig = {
Expand All @@ -21,8 +21,8 @@ const config: AxiosRequestConfig = {
params: { id: 12345 },
paramsSerializer: {
indexes: true,
encode: (value) => value,
serialize: (value, options) => String(value)
encode: (value: any) => value,
serialize: (value: Record<string, any>, options?: ParamsSerializerOptions) => String(value)
},
data: { foo: 'bar' },
timeout: 10000,
Expand Down

0 comments on commit c665618

Please sign in to comment.