使用 xslt 在 xml 中同时重命名父节点和重新排列子节点

Renaming the Parent node and Rearranging the Child nodes simultaneously in xml using xslt

如何同时重命名父节点和重新排列子节点。

我尝试了一些代码,但无法获得所需的输出。

这是我得到的输出

<?xml version="1.0" encoding="UTF-8"?>
<Envelope xmlns="http://schemas.microsoft.com/dynamics/2011/01/documents/Message">

<Header> </Header>
  <Body>
    <MessageParts xmlns="http://schemas.microsoft.com/dynamics/2011/01/documents/Message">
      <Run xmlns="http://schemas.microsoft.com/dynamics/2008/01/documents/Run">

        <RunObject class="entity">
          <A1>NA</A1>
          <A2>False</A2>
          <A3>02</A3>
          <A4>ER</A4>
        </RunObject>

        <RunObject class="entity">
          <A1>NA</A1>
          <A2>False</A2>
          <A3>03</A3>
          <A4>ER</A4>
        </RunObject>

      </Run>
    </MessageParts>
  </Body>
</Envelope>

我想删除命名空间,重命名父标签并重新排列子标签。 所以我用了这段代码

<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:m="http://schemas.microsoft.com/dynamics/2011/01/documents/Message"
xmlns:r="http://schemas.microsoft.com/dynamics/2008/01/documents/Run"
exclude-result-prefixes="m r">
  <xsl:output method="xml" version="1.0" encoding="UTF-8" indent="yes"/>
  <xsl:strip-space elements="*"/>

  <!-- move all elements to no namespace -->
  <xsl:template match="*">
    <xsl:element name="{local-name()}">
      <xsl:copy-of select="@*"/>
      <xsl:apply-templates/>
    </xsl:element>
  </xsl:template>

  <!-- rename MessageParts to Document + skip the Run wrapper -->
  <xsl:template match="m:MessageParts">
    <Document>
      <xsl:apply-templates select="r:Run/*"/>
    </Document>
  </xsl:template>

  <xsl:template match="r:RunObject[@class='entity']">
    <xsl:copy>

      <xsl:apply-templates select="A3" />
      <xsl:apply-templates select="A4" />
      <xsl:apply-templates select="A2" />
      <xsl:apply-templates select="A1" />

    </xsl:copy>
  </xsl:template>

  <!-- rename RunObject to Item -->
  <xsl:template match="r:RunObject[@class='entity']">
    <Item>
      <xsl:apply-templates />
    </Item>
  </xsl:template>

</xsl:stylesheet>

我能够删除命名空间,重命名父标签,但无法重新排列子标签。我得到的输出是这个

?xml version="1.0" encoding="UTF-8"?>
<Envelope>

  <Header> </Header>
  <Body>
    <Document>

      <Item>
        <A1>NA</A1>
        <A2>False</A2>
        <A3>02</A3>
        <A4>ER</A4>
      </Item>

      <Item>
        <A1>NA</A1>
        <A2>False</A2>
        <A3>03</A3>
        <A4>ER</A4>
      </Item>

    </Document>
  </Body>
</Envelope>

但所需的输出是这样的

<?xml version="1.0" encoding="UTF-8"?>
<Envelope>

  <Header> </Header>
  <Body>
    <Document>

      <Item>
        <A3>02</A3>
        <A4>ER</A4>
        <A2>False</A2>
        <A1>NA</A1>
      </Item>

      <Item>
        <A3>03</A3>
        <A4>ER</A4>
        <A2>False</A2>
        <A1>NA</A1>
      </Item>

    </Document>
  </Body>
</Envelope>

问题 #1:
您有两个匹配相同节点的模板:

<xsl:template match="r:RunObject[@class='entity']">

只会应用最后一项。

问题 #2:
元素 A1A2A3A4 位于从它们的 Run 祖先继承的命名空间中。选择它们时需要使用绑定到该命名空间的前缀。

看看这是否适合你:

XSLT 1.0

<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:m="http://schemas.microsoft.com/dynamics/2011/01/documents/Message"
xmlns:r="http://schemas.microsoft.com/dynamics/2008/01/documents/Run"
exclude-result-prefixes="m r">
  <xsl:output method="xml" version="1.0" encoding="UTF-8" indent="yes"/>
  <xsl:strip-space elements="*"/>

  <!-- move all elements to no namespace -->
  <xsl:template match="*">
    <xsl:element name="{local-name()}">
      <xsl:copy-of select="@*"/>
      <xsl:apply-templates/>
    </xsl:element>
  </xsl:template>

  <!-- rename MessageParts to Document + skip the Run wrapper -->
  <xsl:template match="m:MessageParts">
    <Document>
      <xsl:apply-templates select="r:Run/*"/>
    </Document>
  </xsl:template>

  <!-- rename RunObject to Item + reorder child nodes -->
  <xsl:template match="r:RunObject[@class='entity']">
    <Item>
      <xsl:apply-templates select="r:A3" />
      <xsl:apply-templates select="r:A4" />
      <xsl:apply-templates select="r:A2" />
      <xsl:apply-templates select="r:A1" />
    </Item>
  </xsl:template>

</xsl:stylesheet>