remove the uri encoding
This commit is contained in:
parent
27b9d844b7
commit
60f3a07917
1 changed files with 1 additions and 1 deletions
|
@ -19,7 +19,7 @@ export function toQueryString(params) {
|
|||
const parts = []
|
||||
for (const key in params) {
|
||||
if (params.hasOwnProperty(key) && params[key]) {
|
||||
parts.push(encodeURIComponent(key) + "=" + encodeURIComponent(params[key]))
|
||||
parts.push(key + "=" + params[key])
|
||||
}
|
||||
}
|
||||
return parts.join("&")
|
||||
|
|
Loading…
Add table
Reference in a new issue