i用XSLT 1.0版创建了以下XSLT样式表。当我尝试访问XSLT样式表的嵌套<xsl:choose></xsl:choose>
块中声明的变量(v1)时,出现以下错误
变量或参数'v1'未定义
在此处定义了v1变量,
<xsl:choose>
<xsl:when test="group='A'">
<xsl:variable name="v1">value one</xsl:variable>
</xsl:when>
<xsl:otherwise>
<xsl:variable name="v1">value two</xsl:variable>
</xsl:otherwise>
</xsl:choose>
但是,尝试使用<xsl:value-of select="$v1"></xsl:value-of>
访问v1变量,会出现上述错误
XSL模板文件(test.xsl)
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="2.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="xml" indent="yes"/>
<xsl:template match="/parent">
<fo:root xmlns:fo="http://www.w3.org/1999/XSL/Format">
<fo:layout-master-set>
<fo:simple-page-master master-name="test" page-height="297mm" page-width="210mm">
<fo:region-body/>
</fo:simple-page-master>
</fo:layout-master-set>
<fo:page-sequence master-reference="test">
<fo:flow flow-name="xsl-region-body">
<fo:block>
<xsl:for-each select="child">
<xsl:variable name="id" select="id"></xsl:variable>
<xsl:variable name="group" select="group"></xsl:variable>
<xsl:choose>
<xsl:when test="id='1'">
<xsl:choose>
<xsl:when test="group='A'">
<xsl:variable name="v1">value one</xsl:variable>
</xsl:when>
<xsl:otherwise>
<xsl:variable name="v1">value two</xsl:variable>
</xsl:otherwise>
</xsl:choose>
<xsl:value-of select="$v1"></xsl:value-of>
</xsl:when>
</xsl:choose>
</xsl:for-each>
</fo:block>
</fo:flow>
</fo:page-sequence>
</fo:root>
</xsl:template>
</xsl:stylesheet>
尝试使用上述xsl模板(input.xml)读取以下xml文件
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<parent>
<child>
<id>1</id>
<group>B</group>
</child>
<child>
<id>1</id>
<group>A</group>
</child>
</parent>
我尝试使用谷歌搜索找到解决方案,但未找到任何解决方案。请提供合适的方法。