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 requesting with an array having empty values, the parsed body params is inconsistent with the data sent from the client. For example
items[]:PPVC-30x27-J items[]:WA-1525-2 quantity[]:9 quantity[]:1 itemNotes[]: itemNotes[]:Test
Will be parsed as
{ items: [ "PPVC-30x27-J", "WA-1525-2" ], quantity: [ "9", "1" ], itemNotes: [ "Test" ] }
where itemNotes should have really been [ "", "Test" ].
itemNotes
[ "", "Test" ]
The text was updated successfully, but these errors were encountered:
Related issue here.
Sorry, something went wrong.
No branches or pull requests
When requesting with an array having empty values, the parsed body params is inconsistent with the data sent from the client. For example
Will be parsed as
where
itemNotes
should have really been[ "", "Test" ]
.The text was updated successfully, but these errors were encountered: