XSLT选择当前级别不同属性

时间:2017-12-20 19:55:49

标签: xml xslt xpath metadata dublin-core

我正在尝试找到基于开始日期和结束日期创建日期范围的最优雅方式。我有以下XML:

<mods:originInfo>
    <mods:dateCreated point="start">2006</mods:dateCreated>
    <mods:dateCreated point="end">2007</mods:dateCreated>
    <mods:dateCaptured point="start">2009</mods:dateCaptured>
    <mods:dateCaptured point="end">2010</mods:dateCaptured>
</mods:originInfo>

我有一个包含

的XSLT
<xsl:template match="mods:originInfo">
    <xsl:for-each select="child::*[@point='start']">
        <dc:date>
            <xsl:value-of select="."/>-<xsl:value-of select="../*[local-name()][@point='end']"/>
        </dc:date>
    </xsl:for-each>
</xsl:template>

当我运行它时,我得到以下输出:

<dc:date>2006-2007</dc:date>
<dc:date>2009-2007</dc:date>

我正试图找到一种方法让这段代码选择正确的“结束”节点值。任何帮助表示赞赏。

1 个答案:

答案 0 :(得分:1)

一次修改:将../替换为following-sibling::,它应该有效:

<xsl:template match="mods:originInfo">
  <xsl:for-each select="child::*[@point='start']">
    <dc:date>
      <xsl:value-of select="."/>-<xsl:value-of select="following-sibling::*[local-name()][@point='end'][1]"/>
    </dc:date>
  </xsl:for-each>
</xsl:template>

<强>输出:

<dc:date xmlns:dc="dc">2006-2007</dc:date>
<dc:date xmlns:dc="dc">2009-2010</dc:date>