我有一个关于 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>
...
这会工作还是不可能?