1

我有一个关于 XSLT 的问题,基本上我有一些转换要做,但最后我想在一个 xslt:variable 中完成我所做的所有转换。

基本上我的意思是这样的,当然 xslt 会更复杂,但只是为了说明我的意思如下:

<xsl:stylesheet xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:x="http://www.w3.org/2001/XMLSchema">
    <xsl:output method="html" indent="no"/>
    <xsl:decimal-format NaN=""/>
    <xsl:template match="/">
        <xsl:call-template name="base_template"/>
    </xsl:template>

    <xsl:template name="base_template">
            <!-- This is what i mean -->
            <xsl:variable name="general_variale">

                <xsl:call-template name="template_three" />

                <br />

                <xsl:call-template name="template_two" />

                <br />

                <xsl:call-template name="template_one" />               

            </xsl:variable>
        </xsl:template>

            <xsl:template name="template_three">
            <xsl:for-each select="$Rows">   

                <xsl:variable name="id" select="@ID" />

                <xsl:for-each select="$filteredRows_Releases">
                    <process name="$id">
                        ....
                    </process>
                </xsl:for-each>
            </xsl:for-each>
        </xsl:template>

        <xsl:template name="template_two">
            <xsl:for-each select="$Rows">   

                <xsl:variable name="id" select="@ID" />

                <xsl:for-each select="$filteredRows_Releases">
                    <task name="$id">
                        ....
                    </task>
                </xsl:for-each>
            </xsl:for-each>
        </xsl:template>
</xsl:stylesheet>

有了这个 xslt,我希望有一个 general_variable 看起来像这样:

<process name="somename">
</process>
...
<task name="somename">
</task>
...

这会工作还是不可能?

4

1 回答 1

1

是的,您可以通过这种方式在变量中捕获任何处理的结果。

但是,在 XSLT 1.0 中,对如何使用结果变量有一些限制:它被称为结果树片段。如果您想以任何有趣的方式处理它,您将需要 exslt:node-set() 扩展将其转换为常规文档树。在 XSLT 2.0 中,这个限制被删除了。

于 2013-09-12T09:45:30.627 回答