Merge pull request #16 from cbess/patch-3

Fix list formatting in Request Data docs
This commit is contained in:
channelcat 2016-10-15 16:23:23 -07:00 committed by GitHub
commit 475880765e

View File

@ -4,10 +4,10 @@
The following request variables are accessible as properties: The following request variables are accessible as properties:
request.files (dictionary of File objects) - List of files that have a name, body, and type `request.files` (dictionary of File objects) - List of files that have a name, body, and type
request.json (any) - JSON body `request.json` (any) - JSON body
request.args (dict) - Query String variables. Use getlist to get multiple of the same name `request.args` (dict) - Query String variables. Use getlist to get multiple of the same name
request.form (dict) - Posted form variables. Use getlist to get multiple of the same name `request.form` (dict) - Posted form variables. Use getlist to get multiple of the same name
See request.py for more information See request.py for more information