我正在尝试从以下代码中获取名为 Round 的模板参数的值,但它返回空白,谁能告诉我如何在模板中获取参数的值
<xsl:apply-templates select="//solution">
<xsl:with-param name="isRound">N</xsl:with-param>
</xsl:apply-templates>
<xsl:template match="solution">
<xsl:param name="isRound" />
<test>
<xsl:value-of select="$isRound"/>
</test>
</xsl:template>
这个的输出是:
<test></test>