node() 的显式版本是啥
Posted
技术标签:
【中文标题】node() 的显式版本是啥【英文标题】:what is the explicit version of node()node() 的显式版本是什么 【发布时间】:2013-04-22 20:16:40 【问题描述】:是众所周知的 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 语句中不包含 / 是否正确?
【问题讨论】:
【参考方案1】: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()
node-test 匹配 any 节点,但是当它没有给出明确的轴时,它默认在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>
【讨论】:
以上是关于node() 的显式版本是啥的主要内容,如果未能解决你的问题,请参考以下文章