从Root开始的XSL计数节点

时间:2009-09-24 19:28:04

标签: xml xslt

我的XML是完全递归的,因为它中的每个元素都是“Item”,类型由“type”属性描述。在我的XSL中,我希望能够确定我所处的迭代级别,或者换句话说,我目前在根目录中有多少级别。我无法弄清楚如何做到这一点。 。

XML示例:

<Questionnaire>
    <Item ItemType="Group">
        <Caption>ABC</Caption>
        <Item ItemType="Group">
            <Caption>DEF</Caption>
            <Item ItemType="Question">
                <Caption>What's Wrong?</Caption>
            </Item>
        </Item>
    </Item>
    <Item ItemType="Group">
        <Caption>QRS</Caption>
        <Item ItemType="Group">
            <Caption>TUV</Caption>
            <Item ItemType="Question">
                <Caption>What's Wrong?</Caption>
            </Item>
        </Item>
        <Item ItemType="Group">
            <Caption>XYZ</Caption>
            <Item ItemType="Question">
                <Caption>What's Wrong?</Caption>
            </Item>
        </Item>
    </Item>
</Questionnaire>

XSL示例:

<xsl:template match="/Questionnaire">
    <xsl:for-each select="Item">
        <fieldset>
            <legend><xsl:value-of select="Caption" /></legend>
            <xsl:call-template name="ItemTemplate" />
        </fieldset>         
    </xsl:for-each>
</xsl:template>

<xsl:template name="ItemTemplate">
    <xsl:if test="@ItemType != 'Question'">
        <ol>
            <xsl:for-each select="Item">
                <li>
                    <xsl:value-of select="Caption" />
                    <xsl:call-template name="ItemTemplate" />
                </li>
            </xsl:for-each>
        </ol>
    </xsl:if>
</xsl:template>

3 个答案:

答案 0 :(得分:4)

此?

count(ancestor::Item)

顺便说一句,在XSLT中使用<xsl:template match=...><xsl:apply-templates>而非命名模板和<xsl:call-template>更为惯用。

答案 1 :(得分:0)

<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
    <xsl:output method="xml" indent="yes"/>
    <xsl:template match="/Questionnaire">
        <root>
            <xsl:for-each select="Item">
                <fieldset>
                    <legend>
                        <xsl:value-of select="Caption"/>
                    </legend>
                    <xsl:call-template name="ItemTemplate"/>
                </fieldset>
            </xsl:for-each>
        </root>
    </xsl:template>
    <xsl:template name="ItemTemplate">
        <xsl:variable name="Count">
            <xsl:call-template name="count">
                <xsl:with-param name="Node" select="."/>
                <xsl:with-param name="PrevCount" select="1"/>
            </xsl:call-template>
        </xsl:variable>
         (This is <xsl:value-of select="$Count"/> deep)
        <xsl:if test="@ItemType != 'Question'">
            <ol>
                <xsl:for-each select="Item">
                    <li>
                        <xsl:value-of select="Caption"/>
                        <xsl:call-template name="ItemTemplate"/>
                    </li>
                </xsl:for-each>
            </ol>
        </xsl:if>
    </xsl:template>
    <xsl:template name="count">
        <xsl:param name="Node"/>
        <xsl:param name="PrevCount"/>
        <xsl:choose>
            <xsl:when test="name($Node)=name($Node/..)">
                <xsl:call-template name="count">
                    <xsl:with-param name="Node" select="$Node/.."/>
                    <xsl:with-param name="PrevCount" select="$PrevCount+1"/>
                </xsl:call-template>
            </xsl:when>
            <xsl:otherwise>
                <xsl:value-of select="$PrevCount"/>
            </xsl:otherwise>
        </xsl:choose>
    </xsl:template>
</xsl:stylesheet>

第三个模板通过递归地遍历树来进行计数。上面的摘录得到变量中的计数:

    <xsl:variable name="Count">
        <xsl:call-template name="count">
            <xsl:with-param name="Node" select="."/>
            <xsl:with-param name="PrevCount" select="1"/>
        </xsl:call-template>
    </xsl:variable>

这显示了它:

     (This is <xsl:value-of select="$Count"/> deep)

一旦你意识到如何通过递归循环来计算,这并不困难。 : - )

答案 2 :(得分:0)

我能想到的最简单的解决方案是在param模板中定义ItemTemplate深度,然后将其称为with-param 0(初始)和{{ 1}}随后。

以下是我的修改:

$depth+1