You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When I am using queryString.stringify({foo: [1, 2, 3]}, {arrayFormat: 'comma'}); the result is 'foo=1,2,3', is there a way to get the entire string encoded to 'foo%3D1%2C2%2C3', which is a result of encodeURIComponent('foo=1,2,3')?
The text was updated successfully, but these errors were encountered:
oosharma
changed the title
Encoding not working
Encoding not working on entire string
Dec 5, 2022
oosharma
changed the title
Encoding not working on entire string
How to encode entire string
Dec 5, 2022
When I am using
queryString.stringify({foo: [1, 2, 3]}, {arrayFormat: 'comma'});
the result is'foo=1,2,3'
, is there a way to get the entire string encoded to'foo%3D1%2C2%2C3'
, which is a result ofencodeURIComponent('foo=1,2,3')
?The text was updated successfully, but these errors were encountered: