Scrapy Selector 语法其实就是 XPath 和 Css 语法,下面是一些例子:
def parse(self, response):
sel = Selector(response)
ele1 = sel.xpath('//ul[@class="directory-url"]/li') # 12312
ele2 = sel.css('tr > td:nth-child(4)::text') # 123123
ele3 = sel.css('.l.square a').xpath('text()') # 123123
XPath 选择器语法
- XPath 使用路径表达式在 xml 文档中导航
- XPath 包括一个标准函数库
- XPath 是一个 W3C 标准