1

.net データセットを xml ファイルにエクスポートするシナリオがありますが、xml 出力の構造をより階層的な構造に変換したいと考えています。以下は、dataset.xmlwrite() メソッドによってエクスポートされるデータセットの形式です。

<NewDataSet>
    <Table>
        <id>100</id>
        <empname>Joe Smith</empname>
        <phone>111-111-1111</phone>
        <mobile>222-222-2222</mobile>

    </Table>
    <Table>
        <id>101</id>
        <empname>Ann Jensen</empname>
        <phone>111-111-0000</phone>
        <mobile>222-222-0000</mobile>
    </Table>
<NewDataSet>

以下の構造に変換したいと思います。私は xsl 変換の初心者であり<Table>、データセット内のすべてのレコードで要素が繰り返されないようにする方法がわかりません。

<NewDataSet>
    <Table>
        <employee id="100">
            <empname>Joe Smith</empname>
            <phone>111-111-1111</phone>
            <mobile>222-222-2222</mobile>
        </employee>
        <employee id="101">
            <empname>Ann Jensen</empname>
            <phone>111-111-0000</phone>
            <mobile>222-222-0000</mobile>
        </employee>
    </Table>
<NewDataSet>

xsl:for-each ステートメントと xsl:if ステートメントの組み合わせを使用して、必要なものを取得しようとしましたが、これまでのところ、機能させることができませんでした。どんな援助でも大歓迎です。

4

2 に答える 2

2

この変換:

<xsl:stylesheet version="1.0"
 xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
 <xsl:output omit-xml-declaration="yes" indent="yes"/>
 <xsl:strip-space elements="*"/>

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

 <xsl:template match="Table[1]">
  <Table>
   <xsl:apply-templates select="../Table/id"/>
  </Table>
 </xsl:template>

 <xsl:template match="Table[position()>1]"/>

 <xsl:template match="Table/id">
  <employee id="{.}">
   <xsl:apply-templates select=
      "following-sibling::node()"/>
  </employee>
 </xsl:template>
</xsl:stylesheet>

提供された XML ドキュメントに適用した場合(整形式になるように修正):

<NewDataSet>
    <Table>
        <id>100</id>
        <empname>Joe Smith</empname>
        <phone>111-111-1111</phone>
        <mobile>222-222-2222</mobile>
    </Table>
    <Table>
        <id>101</id>
        <empname>Ann Jensen</empname>
        <phone>111-111-0000</phone>
        <mobile>222-222-0000</mobile>
    </Table>
</NewDataSet>

必要な正しい結果が生成されます

<NewDataSet>
   <Table>
      <employee id="100">
         <empname>Joe Smith</empname>
         <phone>111-111-1111</phone>
         <mobile>222-222-2222</mobile>
      </employee>
      <employee id="101">
         <empname>Ann Jensen</empname>
         <phone>111-111-0000</phone>
         <mobile>222-222-0000</mobile>
      </employee>
   </Table>
</NewDataSet>

説明:

  1. アイデンティティ ルールは、すべてのノードを「そのまま」コピーします。

  2. 最初のTable要素は、オーバーライドする template によって一致します。これにより、結果にのみが作成され、すべての要素Tableの子にテンプレートが適用されます。Table

  3. 要素は、id要素の値を持つ属性をemployee持つ要素に変換する上書きテンプレートによって照合されます。これにより、要素内のテンプレートが の他のすべての兄弟にも適用され、ID テンプレートによってそのままコピーされます。ididemployeeid

于 2011-01-11T04:56:15.607 に答える
2

これでうまくいくはずです

<?xml version="1.0"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:template match="/">
    <Table>
    <xsl:for-each select="/NewDataSet/Table">
        <employee>
            <xsl:attribute name="id"><xsl:value-of select="id/."/></xsl:attribute>
            <xsl:for-each select="*">
                <xsl:choose>
                    <xsl:when test="name() = 'id' "/>
                    <xsl:otherwise>
                        <xsl:copy-of select="."/>
                    </xsl:otherwise>
                </xsl:choose>
            </xsl:for-each>
        </employee>
    </xsl:for-each>
    </Table>
</xsl:template>
</xsl:stylesheet>
于 2011-01-11T04:58:23.827 に答える