2013-10-10 91 views
1

我在這個XML作爲我的輸入:XSLT:如果標記名稱是父節點或子節點,如何更改標記名稱?

 <unidad num="2."> 
       <tag></tag> 
       <tag2></tag2> 
     <unidad num="2.1"> 
        <tag></tag> 
        <tag2></tag2>   
        <unidad num="2.1.1"> 
        <tag></tag> 
        <tag2></tag2> 
        <unidad num="2.1.1.1"> 
         <tag></tag> 
         <tag2></tag2> 
        </unidad> 
        </unidad> 
       </unidad> 
      </unidad> 

我的輸出應該是:

 <sub> 
       <tag></tag> 
       <tag2></tag2> 
     <sub2> 
        <tag></tag> 
        <tag2></tag2>   
        <sub3> 
        <tag></tag> 
        <tag2></tag2> 
        <sub4> 
         <tag></tag> 
         <tag2></tag2> 
        </sub4> 
        </sub3> 
       </sub2> 
      </sub> 

我無法找到正確的方式來做到這一點。我使用模板的,我有這樣的:

<xsl:for-each select="unidad"> 
     <xsl:call-template name="unidades1"/> 
    </xsl:for-each> 

     <xsl:template name="unidades1"> 
    <xsl:element name="sub1"> 
     <xsl:text></xsl:text> 
      </xsl:element> 
      <xsl:if test="position() != last()"> 
     <xsl:apply-templates select="child::*"/> 
    </xsl:if> 
     </xsl:template> 

     <xsl:template match="unidad"> 
      <xsl:call-template name="unidades2"/> 
     </xsl:template> 


     <xsl:template name="unidades2"> 
    <xsl:element name="sub2"> 
     <xsl:text></xsl:text> 
      </xsl:element> 
      <xsl:if test="position() != last()"> 
     <xsl:apply-templates select="child::*"/> 
    </xsl:if> 
     </xsl:template> 

有了這個XSLT,團結報的每一個孩子的第二個條件匹配,所以它寫成SUB2,我不知道它是怎麼考慮的是另一個單身元素的孩子。任何想法如何達到這個?謝謝!

回答

0

此樣式表產生所需的輸出。它使用修改後的identity transform以及<unidad>元素的專用模板。

<?xml version="1.0" encoding="UTF-8"?> 
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" 
    version="1.0"> 

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

    <xsl:template match="unidad"> 
<!--count the number of ancestors that are unidad elements--> 
     <xsl:variable name="unidad-ancestor-count" select="count(ancestor::unidad)"/> 

<!--If there are at least one unidad ancestors then 
    set the suffix to be the count()+1--> 
     <xsl:variable name="suffix"> 
      <xsl:if test="$unidad-ancestor-count>0"> 
       <xsl:value-of select="$unidad-ancestor-count+1"/> 
      </xsl:if> 
     </xsl:variable> 

<!--create a new element using a base name of "sub" and the suffix value --> 
     <xsl:element name="sub{$suffix}"> 
<!--not pushing the @num attribute through the identity template, 
    just descendant nodes--> 
      <xsl:apply-templates /> 
     </xsl:element> 
    </xsl:template> 

</xsl:stylesheet> 
相關問題