我正在尝试对这个网站的页面进行分页(http://www.geny-interim.com/offres/(。问题是我使用此代码使用 css 选择器遍历每个页面
next_page_url=response.css('a.page:nth-child(4)::attr(href)').extract_first()
if next_page_url:
yield scrapy.Request(next_page_url)
但是这样做只会分页到两个页面,然后 css 选择器无法按预期工作。我也尝试使用它:
response.xpath('//*[contains(text(), "›")]/@href/text()').extract_first()
但这也会产生价值误差。任何帮助都会被投票赞成。
这个 XPath 表达式有问题
//*[contains(text(), "›")]/@href/text()
因为href
属性没有text()
属性。
这是一个可以适应您需求的工作蜘蛛:
# -*- coding: utf-8 -*-
import scrapy
class GenyInterimSpider(scrapy.Spider):
name = 'geny-interim'
start_urls = ['http://www.geny-interim.com/offres/']
def parse(self, response):
for offer in response.xpath('//div[contains(@class,"featured-box")]'):
yield {
'title': offer.xpath('.//h3/a/text()').extract_first()
}
next_page_url = response.xpath('//a[@class="page" and contains(.,"›")]/@href').extract_first()
if next_page_url:
yield scrapy.Request(response.urljoin(next_page_url), callback=self.parse)