XSLT中的计数器

时间:2010-10-19 09:19:33

标签: xslt

如何在xslt

中实现计数器类型功能

2 个答案:

答案 0 :(得分:2)

XSLT基于函数式编程,因此你不能使用计数器,如果它可以帮助你可以尝试递归

答案 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="text"/>
    <xsl:template match="/">
        <!-- TODO: Auto-generated template -->
        <xsl:call-template name="counter">
            <xsl:with-param name="start" select="1" />
            <xsl:with-param name="stop" select="10" />
            <xsl:with-param name="increment" select="1" />
        </xsl:call-template>
    </xsl:template>
    <xsl:template name="counter">
        <xsl:param name="start" />
        <xsl:param name="stop" />
        <xsl:param name="increment" />
        Value:<xsl:value-of select="$increment"/>
        <xsl:if test="$increment &lt; $stop">
                <xsl:call-template name="counter">
                <xsl:with-param name="start" select="$start" />
                <xsl:with-param name="stop" select="$stop" />
                <xsl:with-param name="increment" select="$increment+1" />
            </xsl:call-template>
        </xsl:if>

    </xsl:template>
</xsl:stylesheet>