gpt4 book ai didi

python - Scrapy 的 XPath 中的 OR 条件

转载 作者:行者123 更新时间:2023-12-01 04:58:31 30 4
gpt4 key购买 nike

目前,我遇到了 XPath 和 Scrapy 中的问题,我必须解析这样的示例。

<dl class>
<x class="another"><a>data 1</a></x>
<y class="y"><b>data 2</b></y>
</dl>

我想获取 和 标签之间的数据。所以,我想知道是否有类似的解决方案

dl=response.xpath(".//dl")
for row in dl.xpath(".//a or .//b")

我想知道是否可以添加 OR 条件。

最佳答案

Use | :

dl.xpath(".//a | .//b")

关于python - Scrapy 的 XPath 中的 OR 条件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26816138/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com