Fixed #21708 -- Added some headings to separate unrelated topics.

Thanks ashley at ashleymills.com for the suggestion.
This commit is contained in:
Tim Graham 2013-12-30 17:55:12 -05:00
parent 0150830687
commit 270f7e2167
1 changed files with 5 additions and 2 deletions

View File

@ -178,8 +178,8 @@ The URLconf doesn't look at the request method. In other words, all request
methods -- ``POST``, ``GET``, ``HEAD``, etc. -- will be routed to the same methods -- ``POST``, ``GET``, ``HEAD``, etc. -- will be routed to the same
function for the same URL. function for the same URL.
Notes on capturing text in URLs Captured arguments are always strings
=============================== =====================================
Each captured argument is sent to the view as a plain Python string, regardless Each captured argument is sent to the view as a plain Python string, regardless
of what sort of match the regular expression makes. For example, in this of what sort of match the regular expression makes. For example, in this
@ -190,6 +190,9 @@ URLconf line::
...the ``year`` argument to ``news.views.year_archive()`` will be a string, not ...the ``year`` argument to ``news.views.year_archive()`` will be a string, not
an integer, even though the ``\d{4}`` will only match integer strings. an integer, even though the ``\d{4}`` will only match integer strings.
Specifying defaults for view arguments
======================================
A convenient trick is to specify default parameters for your views' arguments. A convenient trick is to specify default parameters for your views' arguments.
Here's an example URLconf and view:: Here's an example URLconf and view::