forked from orbit-oss/flask
fix syntax error and typo in quickstart.rst
This commit is contained in:
parent
4c8ec8f555
commit
104808b480
1 changed files with 4 additions and 2 deletions
|
|
@ -293,7 +293,7 @@ Python shell. See :ref:`context-locals`. ::
|
||||||
|
|
||||||
@app.route('/user/<username>')
|
@app.route('/user/<username>')
|
||||||
def profile(username):
|
def profile(username):
|
||||||
return '{}'s profile'.format(username)
|
return '{}\'s profile'.format(username)
|
||||||
|
|
||||||
with app.test_request_context():
|
with app.test_request_context():
|
||||||
print(url_for('index'))
|
print(url_for('index'))
|
||||||
|
|
@ -315,6 +315,8 @@ a route only answers to ``GET`` requests. You can use the ``methods`` argument
|
||||||
of the :meth:`~flask.Flask.route` decorator to handle different HTTP methods.
|
of the :meth:`~flask.Flask.route` decorator to handle different HTTP methods.
|
||||||
::
|
::
|
||||||
|
|
||||||
|
from flask import request
|
||||||
|
|
||||||
@app.route('/login', methods=['GET', 'POST'])
|
@app.route('/login', methods=['GET', 'POST'])
|
||||||
def login():
|
def login():
|
||||||
if request.method == 'POST':
|
if request.method == 'POST':
|
||||||
|
|
@ -323,7 +325,7 @@ of the :meth:`~flask.Flask.route` decorator to handle different HTTP methods.
|
||||||
return 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 `HTTP RFC`_. Likewise,
|
||||||
``OPTIONS`` is automatically implemented for you.
|
``OPTIONS`` is automatically implemented for you.
|
||||||
|
|
||||||
.. _HTTP RFC: https://www.ietf.org/rfc/rfc2068.txt
|
.. _HTTP RFC: https://www.ietf.org/rfc/rfc2068.txt
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue