xsl中的当前索引值

时间:2015-06-08 14:03:48

标签: xml xslt xslt-1.0

嘿,我有一个场景,我有像

这样的xml结构
<deftms>
<tn>abc</tn>
<td>xyz</td>
<tn>abc1</tn>
<td>xyz1</td>
<tn>abc2</tn>
<td>xyz2</td>
</deftms>

想将其转换为:

<deftms>
     <newtms>
        <tn>abc</tn>
        <td>xyz</td>
     </newtms>
     <newtms>
        <tn>abc1</tn>
        <td>xyz1</td>
     </newtms>
     <newtms>
       <tn>abc2</tn>
        <td>xyz2</td>
     </newtms>
</deftms>

使用以下转换xsl代码来实现输出

<xsl:template name = "deftms">  
    <deftms>
      <xsl:for-each select="//deftms/tn">
<xsl:variable name="tn"><xsl:value-of select="current()" /></xsl:variable>
<xsl:variable name="td"><xsl:value-of select="(current())" /></xsl:variable>
<newtms>
    <tn><xsl:copy-of select="$tn" /></tn>
        <td><xsl:copy-of select="$td" /></td>
 </newtms>
      </xsl:for-each>
    </deftms>
</xsl:template>

有人有任何想法吗?

3 个答案:

答案 0 :(得分:0)

for-eachposition()功能会为您提供所需内容。它返回当前正在处理的节点的(从一个基础上)索引,在for-each选择的节点列表中 - 非正式地称为“迭代编号”(尽管for-each不一定需要实现为在处理器内循环。)

<xsl:template name = "deftms">  
  <deftms>
    <xsl:for-each select="//deftms/tn">
      <xsl:variable name="pos" select="position()" />
      <xsl:variable name="td" select="../td[$pos]" />
      <newtms>
        <tn><xsl:copy-of select="." /></tn>
        <td><xsl:copy-of select="$td" /></td>
      </newtms>
    </xsl:for-each>
  </deftms>
</xsl:template>

答案 1 :(得分:0)

尝试:

<xsl:template name = "deftms">  
    <deftms>
      <xsl:for-each select="tn">
       <newtms>
        <xsl:copy-of select=". | following-sibing::td[1]" />
       </newtms>
      </xsl:for-each>
    </deftms>
</xsl:template>

答案 2 :(得分:0)

尝试以下

<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:template match="deftms" name ="ParentCopy">
<xsl:copy>
    <xsl:param name="LoopCountA">1</xsl:param>
    <xsl:variable name = "CountDate" >

        <xsl:value-of select = "count(tn)"/>

    </xsl:variable>
    <xsl:choose>
        <xsl:when test = " $LoopCountA  &lt;= $CountDate " >

                <newtms>
                    <xsl:copy-of select="tn[position()= $LoopCountA]"/>
                    <xsl:copy-of select ="td[position()= $LoopCountA]"/>
                </newtms>

            <xsl:call-template name="ParentCopy">

                <xsl:with-param name="LoopCountA">
                    <xsl:value-of select="$LoopCountA + 1"/>
                </xsl:with-param>

            </xsl:call-template>
        </xsl:when>
    </xsl:choose>
        </xsl:copy>


</xsl:template>

</xsl:stylesheet>