为什么在XSLT中未调用函数



我正在尝试调用函数。但是它不显示。https://plnkr.co/edit/tn1bn5yao5z63rdcbgln?p = preview

<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
   <xsl:template name="dosomething">
        <xsl:text>A function that does something</xsl:text>
    </xsl:template>
    <xsl:call-template name="dosomething"/>
</xsl:stylesheet>

xsl:call-template不能处于样式表的顶级。它必须仅在模板主体中使用,例如:

<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
   <xsl:template name="dosomething">
        <xsl:text>A function that does something</xsl:text>
    </xsl:template>
   <xsl:template match="/">
        <xsl:call-template name="dosomething"/>
    </xsl:template>

</xsl:stylesheet>

相关内容

  • 没有找到相关文章

最新更新