Fix list formatting in Request Data docs
Added two spaces after line to force newline in markdown. Code emphasized in lists.
This commit is contained in:
parent
1d519ff407
commit
9d7488f59d
|
@ -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
|
||||||
|
|
||||||
|
@ -40,4 +40,4 @@ def post_json(request):
|
||||||
@app.route("/query_string")
|
@app.route("/query_string")
|
||||||
def query_string(request):
|
def query_string(request):
|
||||||
return json({ "parsed": True, "args": request.args, "url": request.url, "query_string": request.query_string })
|
return json({ "parsed": True, "args": request.args, "url": request.url, "query_string": request.query_string })
|
||||||
```
|
```
|
||||||
|
|
Loading…
Reference in New Issue
Block a user