diff --git a/docs/5.md b/docs/5.md index 432a6d6781bfc6abf3cd438b7b31e8296c934d2f..64cad952e87f687e06f814fd34a9af49b42a328f 100644 --- a/docs/5.md +++ b/docs/5.md @@ -4,7 +4,7 @@ 在本教程中,我们假定scrapy已经安装在您的系统上。如果还未安装,看 [安装指南](install.html#intro-install) . -我们将回爬 [quotes.toscrape.com](http://quotes.toscrape.com/)的网站, 这是一家列出著名作家的名言的网站。 +我们将会爬 [quotes.toscrape.com](http://quotes.toscrape.com/)的网站, 这是一家列出著名作家的名言的网站。 本教程将指导您完成以下任务: @@ -205,7 +205,7 @@ scrapy shell "http://quotes.toscrape.com/page/1/" ``` -运行 `response.css('title')` 的输出结果是个列表形似的对象,即为 [`SelectorList`](../topics/selectors.html#scrapy.selector.SelectorList "scrapy.selector.SelectorList") 。这包含一组封装了XML/HTML元素的 [`Selector`](../topics/selectors.html#scrapy.selector.Selector "scrapy.selector.Selector") 对象,并允许您进行进一步的查询,以细化所选内容或提取数据。 +运行 `response.css('title')` 的输出结果是一个列表形式的对象,即为 [`SelectorList`](../topics/selectors.html#scrapy.selector.SelectorList "scrapy.selector.SelectorList") 。这包含一组封装了XML/HTML元素的 [`Selector`](../topics/selectors.html#scrapy.selector.Selector "scrapy.selector.Selector") 对象,并允许您进行进一步的查询,以细化所选内容或提取数据。 要从以上标题中提取文本,可以执行以下操作: