假设我有一个大型XML文件,其结构如下:
<MyXml>
<Data1>
<Node1>1234</Node1>
<Node2>abc<Node2>
<Node3>gfdf</Node3>
...
<Node10000>more text</Node10000>
</Data1>
<Data2>
...
</Data2>
</MyXml>
我想将这个XML转换为另一个看起来完全相同的XML,但是将某个字符串连接到某个节点,比如 Node766 。我当然正在使用XSLT,并想知道除了 Node766 之外我怎么能告诉它按原样复制每个东西,在输出之前我必须做一些事情。
答案 0 :(得分:61)
<?xml version="1.0"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<!--Identity template,
provides default behavior that copies all content into the output -->
<xsl:template match="@*|node()">
<xsl:copy>
<xsl:apply-templates select="@*|node()"/>
</xsl:copy>
</xsl:template>
<!--More specific template for Node766 that provides custom behavior -->
<xsl:template match="Node766">
<xsl:copy>
<xsl:apply-templates select="@*|node()"/>
<!--Do something special for Node766, like add a certain string-->
<xsl:text> add some text </xsl:text>
</xsl:copy>
</xsl:template>
</xsl:stylesheet>
答案 1 :(得分:14)
从identity transform开始,并为您的例外添加模板匹配。