2

我是 XSL 的新手,找不到像下面这样的案例。我想将 source.xml 转换为 target.xml。我有使用模式“组”,但它对我不起作用(可能我无法正确使用它)

源.xml:

<?xml version="1.0" encoding="ISO-8859-1"?>

<PersonBody>

    <Person>
        <D>Name</D>
        <D>Surname</D>
        <D>Id</D>
    </Person>

    <PersonValues>
        <D>Michael</D>
        <D>Jackson</D>
        <D>01</D>
    </PersonValues>

    <PersonValues>
        <D>James</D>
        <D>Bond</D>
        <D>007</D>
    </PersonValues>

    <PersonValues>
        <D>Kobe</D>
        <D>Bryant</D>
        <D>24</D>
    </PersonValues>

</PersonBody>

目标.xml:

<PersonBody>
  <AllValues>
    <Name>
      <D>Michael</D>
      <D>James</D>
      <D>Kobe</D>
    </Name>
    <Surname>
      <D>Jackson</D>
      <D>Bond</D>
      <D>Bryant</D>
    </Surname>
    <Id>
      <D>01</D>
      <D>007</D>
      <D>24</D>
    </Id>
  </AllValues>
</PersonBody>

编辑:我问了另一个问题,因为输出发生了变化。你可以从这里找到另一个问题

4

1 回答 1

1

试试这个:

<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
  <xsl:output method="xml" indent="yes" omit-xml-declaration="yes"/>
  <xsl:key name="kColumnValue" match="PersonValues/*" 
           use="count(preceding-sibling::*)" />

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

  <xsl:template match="/*">
    <xsl:copy>
      <AllValues>
        <xsl:apply-templates select="Person/*" />
      </AllValues>
    </xsl:copy>
  </xsl:template>

  <xsl:template match="Person/*">
    <xsl:element name="{.}">
      <xsl:apply-templates select="key('kColumnValue', position() - 1)" />
    </xsl:element>
  </xsl:template>
</xsl:stylesheet>

在您的示例 XML 上运行时,结果是:

<PersonBody>
  <AllValues>
    <Name>
      <D>Michael</D>
      <D>James</D>
      <D>Kobe</D>
    </Name>
    <Surname>
      <D>Jackson</D>
      <D>Bond</D>
      <D>Bryant</D>
    </Surname>
    <Id>
      <D>01</D>
      <D>007</D>
      <D>24</D>
    </Id>
  </AllValues>
</PersonBody>
于 2013-04-24T08:57:04.507 回答