Double Encoding of Query Parameters #2483
Replies: 1 comment
-
After reviewing the code, it appears that the behavior is intentional: router/packages/router/src/encoding.ts Lines 88 to 101 in 8e38733 Issue Description: I am encountering a problem with query string keys that are stringified objects. For example, consider the following URL:
When sharing this link or opening it from a terminal, the link transforms to:
The double quotes
This is an encoded version of the previously transformed URL, leading to a broken link. Concern: It seems that the encoded values are being replaced back to their unencoded forms, causing issues when sharing URLs. It would be beneficial to maintain the values in a URI-safe encoded format to prevent such problems. btw all works great with qs package import qs from 'qs'
createRouter({
// other options...
parseQuery: qs.parse,
stringifyQuery: qs.stringify,
}) |
Beta Was this translation helpful? Give feedback.
-
Reproduction
https://stackblitz.com/edit/vitejs-vite-qjvsopux
Steps to reproduce the bug
Description
When pushing a query using the
vue-router
, I've observed inconsistent encoding behavior: query parameters are either encoded twice or not at all.Example
Consider the following code snippet:
The resulting URL appears as:
notEncoded
parameter remains unchanged, as expected.encoded
parameter, however, is encoded twice.For reference, the expected single encoding result is:
But in the URL, it appears as
%257Bname%257D
, indicating double encoding.Reproduction
You can reproduce this issue using the following Stackblitz project.
Expected behavior
/?notEncoded={name}&encoded=%7Bname%7D
Actual behavior
/?notEncoded={name}&encoded=%257Bname%257D
Additional information
No response
Beta Was this translation helpful? Give feedback.
All reactions