XSLT在第n个位置添加tr,同时使用不同的子节点转换XML节点

时间:2017-03-30 08:48:45

标签: xml xslt

我是XSLT的新手,我正在尝试转换下面的XML。请注意,子节点将是不同的

<parent>
 <child1>A</child1>
 <child2>B</child2>
 <child3>C</child3>
 <child4>D</child4>
 <child5>E</child5>
 <child6>F</child6>
 <child7>G</child7>
</parent>

当n为3

时,我想按如下方式变换上述内容
<tr><td>child1:A</td><td>child2:B</td><td>child3:C</td></tr>
<tr><td>child4:D</td><td>child5:E</td><td>child6:F</td></tr>
<tr><td>child7:G</td></tr>

我尝试如下

<xsl:template match="parent/*[position() mod 4 = 1]">
    <tr>
    <xsl:apply-templates mode="proc"
        select=".|following-sibling::parent/*[not(position() > 3)]"
    />
    </tr>
</xsl:template>
<xsl:template match="parent/*[not(position() mod 4 = 1)]"/>
 <xsl:template match="parent/*" mode="proc">
    <td class="label"><xsl:value-of select ="name(.)"/>:<xsl:value-of select ="."/></td>
 </xsl:template>

1 个答案:

答案 0 :(得分:0)

问题出在这条线上......

<xsl:apply-templates mode="proc"
                     select=".|following-sibling::parent/*[not(position() > 3)]" />

您所在的模板匹配父元素(parent/*)的子元素。这意味着当前节点没有parent节点作为兄弟节点。将表达式更改为此

<xsl:apply-templates mode="proc" 
                     select=".|following-sibling::*[not(position() > 3)]" />