如何获取当前节点的父节点名称?

发布于 2024-11-29 04:21:40 字数 876 浏览 1 评论 0原文

获取当前节点的父节点名称的正确语法是什么?我知道它与 AxisName 父级有关,但正确的语法是什么? 例如,以下

<netcdf xmlns="http://www.unidata.ucar.edu/namespaces/netcdf/ncml-2.2" location="file:/dev/null" iosp="lasp.tss.iosp.ValueGeneratorIOSP" start="0" increment="1">
    <attribute name="title" value="Vector time series"/>
    <dimension name="time" length="100"/>
    <variable name="time" shape="time" type="double">
        <attribute name="units" type="String" value="seconds since 1970-01-01T00:00"/>
    </variable>
    <group name="Vector" tsdsType="Structure" shape="time">
        <variable name="x" shape="time" type="double"/>
        <variable name="y" shape="time" type="double"/>
        <variable name="z" shape="time" type="double"/>
    </group>
</netcdf>

元素变量的 xml 我应该获取 netcdf 或 group。提前致谢。

what's the right syntax to get the current node's parent node's name? I know it's about the AxisName parent but what's the right syntax?
for example of the following xml

<netcdf xmlns="http://www.unidata.ucar.edu/namespaces/netcdf/ncml-2.2" location="file:/dev/null" iosp="lasp.tss.iosp.ValueGeneratorIOSP" start="0" increment="1">
    <attribute name="title" value="Vector time series"/>
    <dimension name="time" length="100"/>
    <variable name="time" shape="time" type="double">
        <attribute name="units" type="String" value="seconds since 1970-01-01T00:00"/>
    </variable>
    <group name="Vector" tsdsType="Structure" shape="time">
        <variable name="x" shape="time" type="double"/>
        <variable name="y" shape="time" type="double"/>
        <variable name="z" shape="time" type="double"/>
    </group>
</netcdf>

for the element variable I should get netcdf or group. Thanks in advance.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

二货你真萌 2024-12-06 04:21:40

使用

name(..)

..缩写是parent::node()的简写。

请注意:并非每个家长都有名字。例如,文档节点 (/) 是文档顶部元素 (/*) 的父节点,并且没有名称。

Use:

name(..)

The .. abbreviation is a shorthand for parent::node().

Do note: Not every parent has a name. For example the document node (/) is the parent of the top element (/*) of the document and has no name.

苏佲洛 2024-12-06 04:21:40

name(parent::*) 应该这样做。显然,只有一位父母。

name(parent::*) should do it. There's only going to be one parent, obviously.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文