如何使用XQuery检索父节点?
我正在使用 XML 和 XQuerie。我通常使用相对于父节点的 XPath 表达式来检索其子节点。但是,我不确定如果我有一个子节点如何执行相反的操作,如何检索其父节点。
<node id="50>
<childnode1 childid="51" />
<childnode2 childid="52" />
</node>
如果我有节点
,如何检索其父节点:
I am using XML and XQuerie. I usually use an XPath expression relative to a parent node to retrieve its child node. But, I am not sure how to do the opposite meaning if I have a child node, how do I retrieve its parent node.
<node id="50>
<childnode1 childid="51" />
<childnode2 childid="52" />
</node>
If I have the node <childnode1 childid="51" />
, how do I retrieve its parent: <node id="50>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
简短回答:
这选择当前(上下文)节点的父节点。
更长、更一般的答案:
这会选择文档中具有名为
childnode1
的子元素的任何节点,该节点具有属性childid
,其值是“51”。应尽量避免使用包含
//
缩写的表达式,因为这可能非常低效。仅当事先未知 XML 文档的结构时才使用“//”。最佳答案:
Short answer:
This selects the parent of the current (context) node.
Longer and more general answers:
This selects any node in the document that has a child element named
childnode1
, that has an attibutechildid
, whose value is '51'.One should try to avoid an expression that contains the
//
abbreviation, because this may be very inefficient. Use '//' only when the structure of the XML document isn't known in advance.Best answer:
您使用
..
来获取父级,如下所示:因此,如果您有一些如下所示的 XML 文档:
那么 XQuery
将返回带有
id< 的
c
节点3
的 /code>。you use
..
to get the parent, like this:so if you have some XML document like this:
then the XQuery
would return the
c
node withid
of3
.这是获取父节点 (..) 的更复杂的示例。
Q) 查找一个国家/地区最流行的语言是另一个国家/地区最不流行的语言,并且两个国家/地区都列出了多种语言的所有情况。
https://prod-c2g.s3.amazonaws.com/db /Winter2013/files/countries.xml
A)
Here is a more complex example of getting the parent node (..).
Q) Find all situations where one country's most popular language is another country's least popular, and both countries list more than one language.
https://prod-c2g.s3.amazonaws.com/db/Winter2013/files/countries.xml
A)
或者,您也可以使用
fn:root()
Xquery 函数。Alternatively, you can also make use of
fn:root()
Xquery function.