注意//节点之间的区别 [1] 和(/ /节点) [1]¶
例子: >>> from scrapy import Selector
>>> sel = Selector(text="""
....: <ul class="list">
....: <li>1</li>
....: <li>2</li>
....: <li>3</li>
....: </ul>
....: <ul class="list">
....: <li>4</li>
....: <li>5</li>
....: <li>6</li>
....: </ul>""")
>>> xp = lambda x: sel.xpath(x).getall()
这是最重要的 >>> xp("//li[1]")
['<li>1</li>', '<li>4</li>']
这是第一个 >>> xp("(//li)[1]")
['<li>1</li>']
这是最重要的 >>> xp("//ul/li[1]")
['<li>1</li>', '<li>4</li>']
这是第一个 >>> xp("(//ul/li)[1]")
['<li>1</li>']
在条件中使用文本节点¶当需要将文本内容用作 XPath string function 避免使用 这是因为表达式 例子: >>> from scrapy import Selector
>>> sel = Selector(text='<a href="#">Click here to go to the <strong>Next Page</strong></a>')
转换A node-set 字符串: >>> sel.xpath('//a//text()').getall() # take a peek at the node-set
['Click here to go to the ', 'Next Page']
>>> sel.xpath("string(//a[1]//text())").getall() # convert it to string
['Click here to go to the ']
A node 但是,转换为字符串后,会将其自身的文本加上其所有后代的文本组合在一起: >>> sel.xpath("//a[1]").getall() # select the first node
['<a href="#">Click here to go to the <strong>Next Page</strong></a>']
>>> sel.xpath("string(//a[1])").getall() # convert it to string
['Click here to go to the Next Page']
所以,使用 >>> sel.xpath("//a[contains(.//text(), 'Next Page')]").getall()
[]
但是使用 >>> sel.xpath("//a[contains(., 'Next Page')]").getall()
['<a href="#">Click here to go to the <strong>Next Page</strong></a>'] |
Archiver|手机版|笨鸟自学网 ( 粤ICP备20019910号 )
GMT+8, 2024-12-4 15:46 , Processed in 0.013889 second(s), 17 queries .