mirror of
https://github.com/django/django.git
synced 2025-08-04 02:48:35 +00:00
Fixed #30310 -- Added support for looking up HttpHeaders.headers using underscores.
This commit is contained in:
parent
48235ba807
commit
a3a4f5c144
4 changed files with 17 additions and 0 deletions
|
@ -199,6 +199,15 @@ All attributes should be considered read-only, unless stated otherwise.
|
|||
>>> request.headers.get('user-agent')
|
||||
Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6)
|
||||
|
||||
For use in, for example, Django templates, headers can also be looked up
|
||||
using underscores in place of hyphens::
|
||||
|
||||
{{ request.headers.user_agent }}
|
||||
|
||||
.. versionchanged:: 3.0
|
||||
|
||||
Support for look ups using underscores was added.
|
||||
|
||||
.. attribute:: HttpRequest.resolver_match
|
||||
|
||||
An instance of :class:`~django.urls.ResolverMatch` representing the
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue