mirror of https://github.com/scrapy/scrapy.git
Improve documentation
This commit is contained in:
parent
195f43b054
commit
509865d10b
|
|
@ -172,7 +172,7 @@ Request objects
|
|||
``copy()`` or ``replace()`` methods, and can also be accessed, in your
|
||||
spider, from the ``response.meta`` attribute.
|
||||
|
||||
Values are only acessible on the next :class:`Response`, to forward a key/value
|
||||
Values are only acessible on the next :class:`~scrapy.http.Response`, to forward a key/value
|
||||
through subsequent responses see :class:`~scrapy.spidermiddlewares.stickymeta.StickyMetaParamsMiddleware`.
|
||||
|
||||
.. attribute:: Request.cb_kwargs
|
||||
|
|
|
|||
|
|
@ -1390,7 +1390,7 @@ STICKY_META_KEYS
|
|||
|
||||
Default: ``[]`` (empty list)
|
||||
|
||||
Configure which key/values should be stickied in :attr:`Request.meta`. See
|
||||
Configure which key/values should be stickied in :attr:`Request.meta <scrapy.http.Request.meta>`. See
|
||||
:class:`~scrapy.spidermiddlewares.stickymeta.StickyMetaParamsMiddleware` for more info.
|
||||
|
||||
.. setting:: TELNETCONSOLE_ENABLED
|
||||
|
|
|
|||
|
|
@ -463,7 +463,7 @@ StickyMetaParamsMiddleware
|
|||
When enabled and configured, this middleware forwards the desired :ref:`Request.meta <topics-request-meta>`
|
||||
parameters between ``Requests`` and ``Responses``.
|
||||
|
||||
The :class:`StickyMetaParamsMiddleware` can be configured through the settings :setting:`STICKY_META_KEYS`.
|
||||
The :class:`StickyMetaParamsMiddleware` can be configured through the :setting:`STICKY_META_KEYS` setting.
|
||||
|
||||
See the difference between :ref:`topics-spiders` with and without the middleware:
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue