3

我希望更改某些 XML 元素的顺序。XML 很复杂,并且由单独的过程生成——我不需要更改它,所以我希望使用 XSLT 来更正元素顺序。

我不是 XSLT 专家(!)所以我寻找了一些片段,发现了一些适合我的情况的小改动,几乎可以工作。我目前拥有的最佳版本以正确的顺序输出元素,但去掉了所有属性。

我用我的问题的相关特性创建了一个更简单的 xml 和相应的 xsl。

这是(虚拟)示例 xml:

<?xml version="1.0" encoding="UTF-8"?>
<Companies xmlns="company:fruit:ns" Version="1.0">
  <Description>Some example companies and fruit shipments</Description>
  <Company CompanyId="Acme">
    <Description>Some example shipments</Description>
    <Shipment Id="ABC">
      <Description>Some apples</Description>
      <Fruit>
        <Apples>10</Apples>
      </Fruit>
    </Shipment>
    <Shipment Id="DEF">
      <Description>Some oranges and pears</Description>
      <Fruit>
        <Oranges>20</Oranges>
        <Pears>20</Pears>
      </Fruit>
    </Shipment>
    <Shipment Id="JKL">
      <Description>Empty</Description>
      <Fruit/>
    </Shipment>
    <Fruit/>
  </Company>
  <Fruit/>
</Companies>

问题是在 Company-Description 元素之后应该有一个 Company-Fruit 元素(而不是在所有 Shipment 元素之后),并且在 Companies-Description 元素之后应该有一个 Companies-Fruit 元素(而不是在所有 Companies-公司元素)。我使用以下 xsl 转换来更正元素排序:

<?xml version="1.0"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="2.0" xpath-default-namespace="company:fruit:ns">
  <!-- See http://xsltbyexample.blogspot.com/2008/02/re-arrange-order-of-elements-in-xml.html -->
  <xsl:output omit-xml-declaration="no" indent="yes" method="xml" encoding="utf-8"/>
  <xsl:strip-space elements="*"/>
  <xsl:template match="*">
    <xsl:apply-templates select="self::*" mode="copy"/>
  </xsl:template>
  <xsl:template match="Company/Description">
    <xsl:message>Matched Company Description</xsl:message>
    <xsl:apply-templates select="self::*" mode="copy"/>
    <xsl:apply-templates select="../Fruit" mode="copy"/>
  </xsl:template>
  <xsl:template match="Companies/Description">
    <xsl:message>Matched Companies Description</xsl:message>
    <xsl:apply-templates select="self::*" mode="copy"/>
    <xsl:apply-templates select="../Fruit" mode="copy"/>
  </xsl:template>
  <xsl:template match="Company/Fruit"/>
  <xsl:template match="Companies/Fruit"/>
  <xsl:template match="*" mode="copy">
    <xsl:copy>
      <xsl:apply-templates/>
    </xsl:copy>
  </xsl:template>
  <xsl:template match="text()">
    <xsl:value-of select="."/>
  </xsl:template>
</xsl:stylesheet>

生成的 xml 具有正确的顺序,但大多数属性已被删除:

<?xml version="1.0" encoding="utf-8"?>
<Companies xmlns="company:fruit:ns">
   <Description>Some example companies and fruit shipments</Description>
   <Fruit/>
   <Company>
      <Description>Some example shipments</Description>
      <Fruit/>
      <Shipment>
         <Description>Some apples</Description>
         <Fruit>
            <Apples>10</Apples>
         </Fruit>
      </Shipment>
      <Shipment>
         <Description>Some oranges and pears</Description>
         <Fruit>
            <Apples>20</Apples>
            <Pears>20</Pears>
         </Fruit>
      </Shipment>
      <Shipment>
         <Description>Empty</Description>
         <Fruit/>
      </Shipment>
   </Company>
</Companies>

我欢迎 XSLT 专家的任何建议!

4

2 回答 2

4

应该保持几乎所有输入不变的转换最好从标识模板开始。

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

然后您相应地覆盖该模板。

<!-- throw away <Fruit> elements, initially - they are handled separately -->
<xsl:template match="Company/Fruit | Companies/Fruit" />

<!-- re-build <Company> and <Companies> in the correct order -->
<xsl:template match="Company | Companies">
  <xsl:copy>
    <xsl:copy-of select="@*" />
    <xsl:copy-of select="Fruit" />
    <xsl:apply-templates select="node()" />
  </xsl:copy>
</xsl:template>

然后你就完成了。

于 2013-10-11T11:35:53.473 回答
3

@Tomalak 的解决方案展示了如何重新排序元素,例如,<Fruit>下面的元素<Company>不再跟随<Shipment>元素。但是@Tomalak 的解决方案将元素放在<Fruit>元素之前<Description>。排序应该是<Description>, <Fruit>, <Shipment>,...

因此,为了完整起见,并证明我从@Tomalak的解决方案(!)中学到了,xsl完整版本的相关部分如下所示:

<!-- throw away <Fruit> and <Description> elements, initially - they are handled separately -->
<xsl:template match="Company/Fruit | Companies/Fruit | Companies/Description | Company/Description"/>

<!-- re-build <Company> and <Companies> in the correct order -->
<xsl:template match="Company | Companies">
<xsl:copy>
    <xsl:copy-of select="@*"/>
    <xsl:copy-of select="Description"/>
    <xsl:copy-of select="Fruit"/>
    <xsl:apply-templates select="node()"/>
  </xsl:copy>
</xsl:template>

再次感谢@Tomalak 完成繁重的工作......

于 2013-10-11T13:37:16.103 回答