0

我有一个 XML 文档,其中包含不同级别的附加节点,我想通过 XSLT 删除这些节点。

我的直觉是生成一个 XSD(使用 Altova 等),删除我不想出现在输出中的元素,然后让编辑器(Altova 等)自动生成一个 XSLT 以将旧的 XSD 转换为新的 XSD。

过去,我曾经为此手动编写 XSL……但是使用所有这些很酷的工具,是否真的有理由或有人可以提出替代方法?我已经有几年没做过这种事情了,所以我想我会问...

我最终想出了这个,这很简单,所以感谢您的建议:

<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="2.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:fn="http://www.w3.org/2005/xpath-functions" >
<xsl:output method="xml" indent="yes"/>

  <xsl:template xpath-default-namespace="http://www.tempuri.org" match="@*|node()">
    <xsl:copy>
      <xsl:apply-templates select="@*|node()"/>
    </xsl:copy>
  </xsl:template>

  <xsl:template xpath-default-namespace="http://www.tempuri.org" match="SomeNode">
  </xsl:template>
  <xsl:template xpath-default-namespace="http://www.tempuri.org" match="TheNode[@type!='SomeType' and @type!='OtherType']">
  </xsl:template>

</xsl:stylesheet>

我需要做的另一件事是检查“TheNode”的缺失元素“SomeSubElement”,如果缺失则插入一个空元素。

关于如何做到这一点的任何建议?谢谢。

4

1 回答 1

3

一个简单的身份转换,其中包含您要丢弃的空模板:

<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
  xmlns:xs="http://www.w3.org/2001/XMLSchema"
  version="2.0">

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

  <xsl:template match="tagToBeRemoved"/>

</xsl:stylesheet>
于 2010-11-02T14:55:35.173 回答