< xsl:apply-templates />之间的区别是什么?和< xsl:apply-templates select =“.” /取代.我以为select =“.”没有必要,但根据我的使用情况,我会得到不同的结果. 对不起,如果这是重复.我试过搜索这个问题但找不到任何东西.
What is the difference between
<xsl:apply-templates />
and
<xsl:apply-templates select="." />
第一条指令:
<xsl:apply-templates />
是一个简写:
<xsl:apply-templates select="child::node()" />
第二条指令:
<xsl:apply-templates select="." />
是一个简写:
<xsl:apply-templates select="self::node()" />
正如我们所看到的,不仅这两个指令是不同的(前者将模板应用于所有子节点,后者将模板应用于当前节点),但后者是危险的,并且通常可能导致无限循环!