Replies: 1 comment 3 replies
-
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Hi,
Is it possible to disable encode for search query params (or disable encoding for special/reserved chars)? Even with custom search serialize/deserialize, params are escaped internally by router.
In our use case comma is used as search param delimiter for multi values and encoded comma is used for single value.
For example:
Search param
filter=in(val1,val2)
is automatically encoded tofilter=in(val1%2Cval2)
.As far as understand RFC specification
filter=in(val1,val2)
andfilter=in(val1%2Cval2)
are not equal.Beta Was this translation helpful? Give feedback.
All reactions