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

时间:2011-08-11 08:37:39

标签: xslt xpath netcdf ncml

获取当前节点的父节点名称的正确语法是什么?我知道这是关于AxisName的父级,但是什么是正确的语法? 例如以下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>

对于元素变量,我应该得到netcdf或group。提前谢谢。

2 个答案:

答案 0 :(得分:31)

使用

name(..)

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

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

答案 1 :(得分:9)

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