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
In werkzeug MultiDict allows to use getlist to get multiple values for single name in form data.
getlist
This could be useful for filing dataclass List field
The text was updated successfully, but these errors were encountered:
Можно запилить мапу вида
класс -> геттер и геттер секвенса.
dict: (operator.getitem, operator.getitem), QueryDict: (QueryDict.get, QueryDict.getlist), MultidictDict: (MultidictDict.get, MultidictDict.getlist), Sequence: (operator.getitem, operator.getitem)
For unsupported classes it can be even getattr method
getattr
Sorry, something went wrong.
Осторожно: itemgetter медленнее чем квадратные скобки
This issue is generalized by #287
No branches or pull requests
In werkzeug MultiDict allows to use
getlist
to get multiple values for single name in form data.This could be useful for filing dataclass List field
The text was updated successfully, but these errors were encountered: