是众所周知的XSLT 1.0标识模板
<xsl:template match="@*|node()">
<xsl:copy>
<xsl:apply-templates select="@*|node()"/>
</xsl:copy>
</xsl:template>
与
同义<xsl:template match="/|@*|*|processing-instruction()|comment()|text()">
<xsl:copy>
<xsl:apply-templates select="@*|*|processing-instruction()|comment()|text()"/>
</xsl:copy>
</xsl:template>
。它是正确的,节点()包括/在匹配语句和不包括/在选择语句?
node()
节点测试不具有不同的行为取决于它是否在match
或select
属性。标识模板的扩展版本如下:
<xsl:template match="@*|*|processing-instruction()|comment()|text()">
<xsl:copy>
<xsl:apply-templates select="@*|*|processing-instruction()|comment()|text()"/>
</xsl:copy>
</xsl:template>
node()
节点测试匹配任何节点,但是当它没有给定显式轴时,它默认位于child::
轴上。所以模式match="node()"
不匹配文档根或属性,因为它们不在任何节点的子轴上。
您可以观察到标识模板与根节点不匹配,因为它没有输出:
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="text" indent="yes"/>
<xsl:template match="@* | node()">
<xsl:if test="count(. | /) = 1">
<xsl:text>Root Matched!</xsl:text>
</xsl:if>
</xsl:template>
</xsl:stylesheet>
,输出"Root Matched!":
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="text" indent="yes"/>
<xsl:template match="@* | node() | /">
<xsl:if test="count(. | /) = 1">
<xsl:text>Root Matched!</xsl:text>
</xsl:if>
</xsl:template>
</xsl:stylesheet>
您可以通过在任何具有属性的文档上运行node()
测试来验证该测试是否适用于根节点和属性:
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="text" indent="yes"/>
<xsl:template match="node()">
<xsl:apply-templates select="@* | node()" />
</xsl:template>
<xsl:template match="/">
<xsl:if test="self::node()">
node() matches the root!
</xsl:if>
<xsl:apply-templates select="@* | node()" />
</xsl:template>
<xsl:template match="@*">
<xsl:if test="self::node()">
node() matches an attribute!
</xsl:if>
</xsl:template>
</xsl:stylesheet>
下面是观察node()
测试适用于根节点的另一种方法:
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="text" indent="yes"/>
<xsl:template match="/*">
<xsl:value-of select="concat('The root element has ', count(ancestor::node()),
' ancestor node, which is the root node.')"/>
</xsl:template>
</xsl:stylesheet>