mirror of
https://github.com/django/django.git
synced 2025-06-05 03:29:12 +00:00
[1.9.x] Refs #24622 -- Documented alternatives to some test response attributes when using alternative template engines.
Backport of 2b9eed41fa26537d1af4f818c6e4296ce3305b01 from master
This commit is contained in:
parent
02f3084f4e
commit
c367abb11b
@ -458,6 +458,14 @@ Specifically, a ``Response`` object has the following attributes:
|
|||||||
>>> response.context['name']
|
>>> response.context['name']
|
||||||
'Arthur'
|
'Arthur'
|
||||||
|
|
||||||
|
.. admonition:: Not using Django templates?
|
||||||
|
|
||||||
|
This attribute is only populated when using the
|
||||||
|
:class:`~django.template.backends.django.DjangoTemplates` backend.
|
||||||
|
If you're using another template engine,
|
||||||
|
:attr:`~django.template.response.SimpleTemplateResponse.context_data`
|
||||||
|
may be a suitable alternative on responses with that attribute.
|
||||||
|
|
||||||
.. method:: json(**kwargs)
|
.. method:: json(**kwargs)
|
||||||
|
|
||||||
.. versionadded:: 1.9
|
.. versionadded:: 1.9
|
||||||
@ -494,6 +502,15 @@ Specifically, a ``Response`` object has the following attributes:
|
|||||||
loaded from a file. (The name is a string such as
|
loaded from a file. (The name is a string such as
|
||||||
``'admin/index.html'``.)
|
``'admin/index.html'``.)
|
||||||
|
|
||||||
|
.. admonition:: Not using Django templates?
|
||||||
|
|
||||||
|
This attribute is only populated when using the
|
||||||
|
:class:`~django.template.backends.django.DjangoTemplates` backend.
|
||||||
|
If you're using another template engine,
|
||||||
|
:attr:`~django.template.response.SimpleTemplateResponse.template_name`
|
||||||
|
may be a suitable alternative if you only need the name of the
|
||||||
|
template used for rendering.
|
||||||
|
|
||||||
.. attribute:: resolver_match
|
.. attribute:: resolver_match
|
||||||
|
|
||||||
.. versionadded:: 1.8
|
.. versionadded:: 1.8
|
||||||
|
Loading…
x
Reference in New Issue
Block a user