在根据节点是否存在设置变量之后,我正在尝试输出变量的文字字符串值。我认为条件检查逻辑是正确的。但它没有输出值......
<xsl:variable name="subexists"/>
<xsl:template match="class">
<xsl:copy><xsl:apply-templates select="@*|node()"/></xsl:copy>
<xsl:choose>
<xsl:when test="joined-subclass">
<xsl:variable name="subexists" select="'true'"/>
</xsl:when>
<xsl:otherwise>
<xsl:variable name="subexists" select="'false'"/>
</xsl:otherwise>
</xsl:choose>
subexists: <xsl:value-of select="$subexists" />
我希望它输出“假”或“真”的文字字符串。但它没有输出任何东西。请帮忙!谢谢!!!