将元素排序并移动到新元素中

时间:2012-09-17 16:22:07

标签: xslt sorting element

即使有这个网站上的所有好建议,我的xslt仍然有些问题。我很陌生。我有这个源文件:

<?xml version="1.0" encoding="utf-8"?>
<file>
  <id>1</id>
  <row type="A">
    <name>ABC</name>
  </row>
  <row type="B">
    <name>BCA</name>
  </row>
  <row type="A">
    <name>CBA</name>
  </row>
</file>

我想添加一个元素并对类型的行进行排序,以获得此结果

<file>
  <id>1</id>
  <details>
  <row type="A">
    <name>ABC</name>
  </row>
    <row type="A">
      <name>CBA</name>
    </row>
  <row type="B">
    <name>BCA</name>
  </row>
  </details>
</file>

我可以使用它对行进行排序:

  <xsl:template match="file">
    <xsl:copy>
      <xsl:apply-templates select="@*/row"/>
      <xsl:apply-templates>
        <xsl:sort select="@type" data-type="text"/>
      </xsl:apply-templates>
    </xsl:copy>
  </xsl:template>

我可以使用此

移动行
 <xsl:template match="file">
    <xsl:copy>
      <xsl:copy-of select="@*" />
      <xsl:apply-templates select="*[not(name(.)='row')]" />
      <details>
        <xsl:apply-templates select="row"  />
      </details>
    </xsl:copy>
  </xsl:template>

但是当我尝试将它们组合起来时,我无法产生正确的答案。希望当我看到事物的组合时,我更了解XSLT。由于我正在创建一个新元素<details>,我认为必须在创建新的<details>元素之前完成排序。我必须使用xslt 1.0。

1 个答案:

答案 0 :(得分:0)

这样的事似乎有效:

<?xml version="1.0" encoding="utf-8"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
    <xsl:output method="xml" indent="yes"/>

  <xsl:template match="file">
    <xsl:copy>
      <xsl:copy-of select="@*"/>
      <xsl:copy-of select="row[1]/preceding-sibling::*" />
      <details>
        <xsl:for-each select="row">
          <xsl:sort select="@type" data-type="text"/>
          <xsl:copy-of select="."/>
        </xsl:for-each>
      </details>
      <xsl:copy-of select="row[last()]/following-sibling::*" />
    </xsl:copy>
  </xsl:template>

</xsl:stylesheet>

以下是我得到的结果:

<?xml version="1.0" encoding="utf-8"?>
<file>
  <id>1</id>
  <details>
    <row type="A">
      <name>ABC</name>
    </row>
    <row type="A">
      <name>CBA</name>
    </row>
    <row type="B">
      <name>BCA</name>
    </row>
  </details>
</file>