We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I am new to qs and am using it as part of react-instantsearch
I have the following code:
const queryString = qsModule.stringify(routeState, { encode: false, format: 'RFC1738', })
which is giving me:
?music[0]=Hip%20Hop
Ideally I want the following
?music[0]=Hip+Hop
I've noticed that if I disable the "encoding: false" option I get:
?music%5B0%5D=Hip+Hop
Is there a way to combine both options to get the desired result...
Thanks in advance.
The text was updated successfully, but these errors were encountered:
try setting encodeValuesOnly to true
Sorry, something went wrong.
No branches or pull requests
I am new to qs and am using it as part of react-instantsearch
I have the following code:
which is giving me:
Ideally I want the following
I've noticed that if I disable the "encoding: false" option I get:
Is there a way to combine both options to get the desired result...
Thanks in advance.
The text was updated successfully, but these errors were encountered: