diff --git a/src/util/Url.js b/src/util/Url.js index 287fb039..8c219f04 100644 --- a/src/util/Url.js +++ b/src/util/Url.js @@ -100,11 +100,13 @@ const UrlUtil = { toQueryString (obj) { return Object.keys(obj) .reduce((a, k) => { - a.push( - typeof obj[k] === 'object' - ? this.toQueryString(obj[k]) - : `${encodeURIComponent(k)}=${encodeURIComponent(obj[k])}` - ); + if (obj[k] !== null) { + a.push( + (typeof obj[k] === 'object') + ? this.toQueryString(obj[k]) + : `${encodeURIComponent(k)}=${encodeURIComponent(obj[k])}` + ); + } return a; }, []) .join('&');