mirror of https://github.com/scrapy/scrapy.git
Extend docs about Crawling Rules
This commit is contained in:
parent
d04e84c11d
commit
9fb0f8454e
|
|
@ -386,7 +386,9 @@ Crawling rules
|
|||
the specified link extractor. This callback receives a :class:`~scrapy.http.Response`
|
||||
as its first argument and must return either a single instance or an iterable of
|
||||
:class:`~scrapy.item.Item`, ``dict`` and/or :class:`~scrapy.http.Request` objects
|
||||
(or any subclass of them).
|
||||
(or any subclass of them). As mentioned above, the received :class:`~scrapy.http.Response`
|
||||
object will contain the text of the link that produced the :class:`~scrapy.http.Request`
|
||||
in its ``meta`` dictionary (under the ``link_text`` key)
|
||||
|
||||
.. warning:: When writing crawl spider rules, avoid using ``parse`` as
|
||||
callback, since the :class:`CrawlSpider` uses the ``parse`` method
|
||||
|
|
|
|||
Loading…
Reference in New Issue