forked from orbit-oss/flask
Fix code example for HTTP Methods
`return` is required to make 'http methods' example work
This commit is contained in:
parent
9520fbdcb2
commit
d08d96acbc
1 changed files with 2 additions and 2 deletions
|
|
@ -315,9 +315,9 @@ of the :meth:`~flask.Flask.route` decorator to handle different HTTP methods.
|
||||||
@app.route('/login', methods=['GET', 'POST'])
|
@app.route('/login', methods=['GET', 'POST'])
|
||||||
def login():
|
def login():
|
||||||
if request.method == 'POST':
|
if request.method == 'POST':
|
||||||
do_the_login()
|
return do_the_login()
|
||||||
else:
|
else:
|
||||||
show_the_login_form()
|
return show_the_login_form()
|
||||||
|
|
||||||
If ``GET`` is present, Flask automatically adds support for the ``HEAD`` method
|
If ``GET`` is present, Flask automatically adds support for the ``HEAD`` method
|
||||||
and handles ``HEAD`` requests according to the the `HTTP RFC`_. Likewise,
|
and handles ``HEAD`` requests according to the the `HTTP RFC`_. Likewise,
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue