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
when i use map remote the request url not encoded properly and the request query table page value not decoded
/api/members?condition=%5B%7B%22type%22%3A1%2C%22name%22%3A%22test%40google.com%22%7D%2C%7B%22type%22:2%2C%22name%22:%22test2%40google.com%22%7D%5D
/api/members?condition=[{%22type%22%3A1%2C%22name%22%3A%22test%40google.com%22}%2C{%22type%22:2%2C %22name%22:%22test2%40google.com%22}]
in this case the list brakets not encoded[, {, }, ] , and the middle of List brakets {, }not encoded too
[
{
}
]
additionally when i use this map config, in the request query table page not properly presented decoded value
expected
[{"type":1, "name":"[email protected]"}, {"type":2, "name":"[email protected]"}]
real
[{"type"%3A1%2C"name"%3A"test%40google.com"}%2C{"type"%3A2%2C"name"%3A"test2%40google.com"}]
in this case the request query value not decoded ,, @
,
@
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Description
when i use map remote the request url not encoded properly and the request query table page value not decoded
Steps to Reproduce
encoding
in this case the list brakets not encoded
[
,{
,}
,]
, and the middle of List brakets{
,}
not encoded toorequest Query value table page
additionally when i use this map config, in the request query table page not properly presented decoded value
expected
real
in this case the request query value not decoded
,
,@
Environment
The text was updated successfully, but these errors were encountered: