谁能解释一下这在xsl中是什么意思?每个表达式究竟代表什么
<xsl:template match="@*|node()">
@*
匹配任何属性节点,node()
匹配任何其他类型的节点(元素、文本节点、处理指令或注释)。因此,匹配@*|node()
的模板将应用于任何未被更具体的模板消耗的节点。
<xsl:template match="@*|node()">
<xsl:copy><xsl:apply-templates select="@*|node()" /></xsl:copy>
</xsl:template>
将输入XML逐字复制到输出树。然后,您可以使用应用于特定节点的更具体的模板覆盖此模板,以便对XML进行微调,例如,此样式表将创建与输入相同的输出XML,只是所有foo
元素的名称都更改为bar
:
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
<xsl:template match="@*|node()">
<xsl:copy><xsl:apply-templates select="@*|node()" /></xsl:copy>
</xsl:template>
<xsl:template match="foo">
<bar><xsl:apply-templates select="@*|node()" /></bar>
</xsl:template>
</xsl:stylesheet>