Ver código fonte

Fixed #28294 -- Doc'd request/args/kwargs attributes of class-based views.

Mike Vasiliou 7 anos atrás
pai
commit
63e9a71ec4
1 arquivos alterados com 7 adições e 0 exclusões
  1. 7 0
      docs/ref/class-based-views/base.txt

+ 7 - 0
docs/ref/class-based-views/base.txt

@@ -69,6 +69,13 @@ MRO is an acronym for Method Resolution Order.
         The returned view has ``view_class`` and ``view_initkwargs``
         attributes.
 
+        When the view is called during the request/response cycle, the
+        :class:`~django.http.HttpRequest` is assigned to the view's ``request``
+        attribute. Any positional and/or keyword arguments :ref:`captured from
+        the URL pattern <how-django-processes-a-request>` are assigned to the
+        ``args`` and ``kwargs`` attributes, respectively. Then :meth:`dispatch`
+        is called.
+
     .. method:: dispatch(request, *args, **kwargs)
 
         The ``view`` part of the view -- the method that accepts a ``request``