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
If parameters names are the same: <form method="POST" action = "/?param=123456"><input name="param" type="text"/><input type="submit"/></form>
then also logical but inconvenient a bit as it's not clear where parameter come from: Merged: ["param": ["123456", "123456"]]
Query: ["param": ["123456"]]
killev
changed the title
What does request.query means?
What does request.query mean?
Mar 4, 2016
Hello guys,
I'm testing the form's processing and it behaves wierd.
my form:
My server code:
The result is:
Merged: ["param": ["12345", "12345"]]
Query: ["param": ["12345"]]
Seems like mergedQuery adds the same value twice??? Why?? What query and mergedQuery are expected to be then?
The text was updated successfully, but these errors were encountered: