我有一个关于XSLT的问题,基本上我有一些转换要做,但最后我希望在一个xslt:变量中完成所有转换。
基本上我的意思是这样的,当然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>
...
这会起作用还是不可能?
答案 0 :(得分:1)
是的,您可以通过这种方式捕获变量中任何处理的结果。
但是,在XSLT 1.0中,如何使用结果变量存在限制:它被称为结果树片段。如果要以任何有趣的方式处理它,您将需要exslt:node-set()扩展名将其转换为常规文档树。在XSLT 2.0中,此限制已被删除。