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
Ref.#355 Ref.aspida/aspida#752
express はデフォルトで下記 の key から [] を取り外して queryを生成してしまいます
[]
?ids[]=1&ids[]=2
aspidaは取り外しされることは期待していないので、query parserをsimpleに設定します https://expressjs.com/en/api.html#app.settings.table
query parser
simple
Expected
{ ids: [ '1', '2' ] }
Actual
{ ids[]: [ '1', '2' ] }
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
Ref.#355
Ref.aspida/aspida#752
Description
express はデフォルトで下記 の key から
[]
を取り外して queryを生成してしまいますaspidaは取り外しされることは期待していないので、
query parser
をsimple
に設定しますhttps://expressjs.com/en/api.html#app.settings.table
Expected
Actual
The text was updated successfully, but these errors were encountered: