gpt4 book ai didi

xml - XPath:如何选择当前节点的子节点子集

转载 作者:行者123 更新时间:2023-12-03 17:02:43 24 4
gpt4 key购买 nike

我正在练习 XPath,但很难理解一些概念。

我希望从下面的代码片段中选择 w1identw1slavetype w1slave 的元素其元素 w1slavename 的节点具有值 livingroom .

 <w1slave create="2017-01-05 12:39:41">
<w1ident>28-0000000FBAA6</w1ident>
<w1identprefix>28</w1identprefix>
<w1slavetype>THERM_DS18B20</w1slavetype>
<w1slavename>familyroom</w1slavename>
</w1slave>
<w1slave create="2017-01-05 12:39:45">
<w1ident>28-000005e2fdc3</w1ident>
<w1identprefix>28</w1identprefix>
<w1slavetype>THERM_DS18B20</w1slavetype>
<w1slavename>livingroom</w1slavename>
</w1slave>

XPath 表达式 //w1slave[w1slavename='livingroom']/w1ident有效,替换 w1ident 也是如此与 w1slavetype .

但是一旦我用 //w1slave[w1slavename='livingroom'] 选择了父节点, 是否有一种紧凑的方式来请求特定的 child 而不必重复最初的选择?

喜欢

//w1slave[w1slavename='livingroom']/w1ident |   

//w1slave[w1slavename='livingroom']/w1slavetype

有效,但感觉很麻烦。

最佳答案

您可以在谓词中使用 self:: 轴:

//w1slave[w1slavename='livingroom']/*[self::w1ident or self::w1slavetype]

此外,如果您使用的是 XPath 2.0,则可以放弃谓词并仅在括号中使用联合 (|):

//w1slave[w1slavename='livingroom']/(w1ident|w1slavetype)

关于xml - XPath:如何选择当前节点的子节点子集,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41494898/

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