爲什麼我會得到真正的從該模板返回值:模板返回true()時,被告知要返回false
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
\t <xsl:template name="return-false">
\t \t <xsl:value-of select="false()"/>
\t </xsl:template>
\t <xsl:template match="/">
\t \t <root>
\t \t \t <xsl:variable name="call-template">
\t \t \t \t <xsl:call-template name="return-false"/>
\t \t \t </xsl:variable>
\t \t \t <xsl:if test="$call-template = true()">
\t \t \t \t <FALSE/>
\t \t \t </xsl:if>
\t \t </root>
\t </xsl:template>
</xsl:stylesheet>
如何提供XML輸入和輸出。 –
我相信沒有這些,就足夠簡單了。 –