我正在使用下面的xsl标签,其中最初声明了一个变量..
<xsl:variable name="FoundFloating"> <xsl:value-of select="'no'" />
</xsl:variable>
在下面的BLOC中使用
<xsl:for-each select="$abcd/rty">
<xsl:variable name="rate"> <xsl:value-of select=".ert/Rate" />
</xsl:variable>
<xsl:choose>
<xsl:if test="$rate!=$wer_first">
<xsl:variable name="$FoundFloating">
<xsl:value-of select="yes" />
</xsl:variable>
</xsl:if>
</xsl:choose>
</xsl:for-each>
<xsl:choose>
<xsl:when test="$FoundFloating='yes'">
<xsl:value-of select="'AAA'" />
</xsl:when>
<xsl:otherwise>
<xsl:value-of select="'BBB'" />
</xsl:otherwise>
</xsl:choose>
现在问题是在xsl:dor之后我无法访问浮动变量的值请告知我如何访问浮动外部变量的值for循环
请告知此事
答案 0 :(得分:0)
变量具有一定的范围,即可以访问它们的范围。 全局变量(顶级声明)可以在样式表中的任何位置访问。 本地变量不能在声明它们的xsl:template
或xsl:for-each
之外使用。
换句话说,如果在xsl:for-each
内声明变量,则无法从外部访问。
只需在“循环”之外声明此变量:
<xsl:stylesheet version="2.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="xml" indent="yes"/>
<xsl:variable name="FoundFloating">
<xsl:value-of select="'no'" />
</xsl:variable>
<xsl:template match="/">
<xsl:for-each select="$abcd/rty">
<!--......-->
</xsl:for-each>
</xsl:template>
</xsl:stylesheet>
在样式表中,$FoundFloating
的值取决于其他局部变量。如果您希望它们可以在任何地方访问,它们的定义也必须是全局的。
太多变量会使您的XSLT代码难以阅读。请谨慎使用它们,并且只有在你真正需要时才使用它们。