Fixed typo in docs/quickstart
This commit is contained in:
parent
8c8c524ddb
commit
028229d0ff
1 changed files with 1 additions and 1 deletions
|
|
@ -526,7 +526,7 @@ deal with that problem.
|
|||
To access parameters submitted in the URL (``?key=value``) you can use the
|
||||
:attr:`~flask.request.args` attribute::
|
||||
|
||||
searchword = request.args.get('q', '')
|
||||
searchword = request.args.get('key', '')
|
||||
|
||||
We recommend accessing URL parameters with `get` or by catching the
|
||||
`KeyError` because users might change the URL and presenting them a 400
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue