XSLT - 仅在第一个子元素上保留父属性值

时间:2017-10-25 12:43:50

标签: xml xslt

输入xml就像,

<figure id="c035_f001" counter="yes">
<legend><para>The TLIF is indicated to aid reduction of spondylolisthesis and restore disc height, which decompresses the foramina.</para></legend>
<subfigure>
<graphic position="center" fileref="images/9781626230408_c035_f001.jpg"/>
</subfigure>
<subfigure>
<graphic position="center" fileref="images/9781626230408_c035_f001a.jpg"/>
</subfigure>
</figure>

输出应该是,

<figure counter="yes">
<legend><para>The TLIF is indicated to aid reduction of spondylolisthesis and restore disc height, which decompresses the foramina.</para></legend>
<subfigure id="c035_f001">
<graphic position="center" fileref="images/9781626230408_c035_f001.jpg"/>
</subfigure>
<subfigure>
<graphic position="center" fileref="images/9781626230408_c035_f001a.jpg"/>
</subfigure>
</figure>

我们编写了如下所示的XSLT。

 <xsl:template match="subfigure">
 <xsl:variable name="fig" select="parent::figure/@id"></xsl:variable>
 <xsl:choose>
 <xsl:when test="subfigure[not[@id]]">
 <xsl:if test="subfigure[not[@id]]">
 <xsl:copy>    
 <xsl:apply-templates select="@*"/>
 <xsl:attribute name="id">
 <xsl:value-of select="$fig"></xsl:value-of>
 </xsl:attribute>
 <xsl:apply-templates select="node()"/>
 </xsl:copy>            
 </xsl:if>
 </xsl:when>
 <xsl:otherwise>
 <xsl:copy>                
 <xsl:apply-templates select="node() | @*"/>
 </xsl:copy>
 </xsl:otherwise>
 </xsl:choose>        
 </xsl:template>

使用上面的xslt时,我们得到输出为

<figure counter="yes">
<legend><para>The TLIF is indicated to aid reduction of spondylolisthesis and restore disc height, which decompresses the foramina.</para></legend>
<subfigure id="c035_f001">
<graphic position="center" fileref="images/9781626230408_c035_f001.jpg"/>
</subfigure>
<subfigure id="c035_f001">
<graphic position="center" fileref="images/9781626230408_c035_f001a.jpg"/>
</subfigure>
</figure>

“subfigure”元素上的“id”重复。但我们只要求第一个位置。你能指导我们吗?

2 个答案:

答案 0 :(得分:1)

考虑将一般身份转换移动到自己的模板中:

<xsl:template match="@* | node()">
   <xsl:copy>
     <xsl:apply-templates select="@* | node()"/>
   </xsl:copy>
</xsl:template>

然后为需要特殊处理的节点添加模板,确保将所有条件置于匹配模式中,例如

<xsl:template match="figure[@id]/subfigure[1][not(@id)]">
  <xsl:copy>
    <xsl:apply-templates select="@*"/>
    <xsl:copy-of select="../@id"/>
    <xsl:apply-templates/>
  </xsl:copy>
</xsl:template>

答案 1 :(得分:0)

一些初步说明:

(1)提供的XSLT不会生成演示的XML输出,只会生成两个<subfigure>元素。

(2)not[]指的是一个元素<not>,但实际上你的意思是not()来否定这个论点。

(3)我明白你需要&#34;移动&#34;从@id<figure>的{​​{1}}。其他一切都保持不变,对吗?

(4)要完成此任务,您只需要一个身份副本,但有一些例外:

<subfigure>

希望它有所帮助!