"Retreat" in XML 使用 Xpath 表达式
"Retreat" in XML with Xpath expression
我把map属性的父路径定义为#{@root}/items/home
,但是我有一个特例。 xpath 将是 #{@root}/notes
我可以在这样的 xpath 中 "retreat" 吗:xpath: '../notes'
(由于某些原因,我不想更改我的父路径)
提前致谢!
查找XPath axes parent
,像这样:https://www.google.com/search?client=ubuntu&hs=49v&q=xpath+axes+parent
然后尝试parent::*[1]/notes
进行后退一步的 XPath 查询。
我把map属性的父路径定义为#{@root}/items/home
,但是我有一个特例。 xpath 将是 #{@root}/notes
我可以在这样的 xpath 中 "retreat" 吗:xpath: '../notes'
(由于某些原因,我不想更改我的父路径)
提前致谢!
查找XPath axes parent
,像这样:https://www.google.com/search?client=ubuntu&hs=49v&q=xpath+axes+parent
然后尝试parent::*[1]/notes
进行后退一步的 XPath 查询。