如何使用xslt部分转换xml?

时间:2015-11-25 13:31:13

标签: xml xslt

我正在尝试进行一些XML数据迁移,将xml文档从一个模式迁移到另一个模式。变化并不大,所以我想知道是否有一种简单的方法让xslt只能部分转换xml。例如仅重命名元素名称等。

1 个答案:

答案 0 :(得分:1)

XSLT获取输入文档并创建新的输出文档。至于进行小的更改,是的,使用身份转换模板启动样式表,并为更改添加更多特定模板,例如。

<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">

<!-- identity transformation template -->
<xsl:template match="@* | node()">
  <xsl:copy>
    <xsl:apply-templates select="@* | node()"/>
  </xsl:copy>
</xsl:template>

<!-- rename foo to bar elements -->
<xsl:template match="foo">
  <bar>
    <xsl:apply-templates select="@* | node()"/>
  </bar>
</xsl:template>

</xsl:stylesheet>