1

以下のような XML があります。テストごとに、 cat と title と group をソートする必要があります。cat 値 abc については、タイトルを取得して値を設定する必要があります。セット値はすべて、セット ノード内にタイトル値を昇順で追加する必要があります。ここで私は猫の値をハードコーディングしました.しかし、私のシナリオでは、猫の値は外部ソースから取得しています.

<?xml version="1.0" encoding="utf-8" ?>
<compound>
  <test>
    <title>k</title>
    <cetval>
      <cat>abc</cat>
      <cat>fcg</cat>
    </cetval>
    <value>1</value>
    <set>
      <color>blue</color>
    </set>
  </test>
  <test>
    <title>p</title>
    <cetval>
      <cat>fcg</cat>
      <cat>klm</cat>
    </cetval>

    <value>10</value>
    <set>
      <color>pink</color>
    </set>
  </test>
  <test>
    <title>j</title>
    <cetval>
      <cat>fcg</cat>
      <cat>klm</cat>
      <cat>abc</cat>
    </cetval>
    <value>484</value>
    <set>
      <color>yellow</color>
    </set>
  </test>
  <test>
    <title>v</title>
    <cetval>
      <cat>dji</cat>
      <cat>kfjsdlk</cat>
    </cetval>
    <value>93</value>

  </test>
  <test>
    <title>r</title>
    <cetval>
      <cat>deiu</cat>
      <cat>kfjdf</cat>
      <cat>abc</cat>
    </cetval>
    <value>10</value>
    <set>
      <color>blue</color>
    </set>
    <test>
      <title>i</title>
      <cetval>
        <cat>fcg</cat>
        <cat>klm</cat>
        <cat>abc</cat>
      </cetval>

      <value>10</value>

    </test>
    <test>
      <title>w</title>
      <cetval>
        <cat>diweif</cat>
        <cat>fjf</cat>
        <cat>abc</cat>
      </cetval>
      <value>10</value>
      <set>
        <color>yellow</color>
      </set>
    </test>
  </test>

</compound>    

以下のような出力が必要です。

<?xml version="1.0" encoding="utf-8" ?>
<compound>
  <cat>abc</cat>
  <set>
    <color>blue</color>
    <title>k</title>
    <title>r</title>
  </set>
  <set>
    <color>yellow</color>
    <title>j</title>
    <title>w</title>
  </set>
  <title>i</title>


</compound>

私の変換は以下のようになります:

<?xml version="1.0" encoding="utf-8"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
    xmlns:msxsl="urn:schemas-microsoft-com:xslt" exclude-result-prefixes="msxsl">
    <xsl:output method="xml" indent="yes"/>

    <xsl:template match="/">
      <xsl:for-each select="compound/test">
        <xsl:sort select="./cetval/cat" order="ascending"/>
        <xsl:sort select="./title" order="ascending"/>
        <xsl:for-each select="./cetval/cat">
          <xsl:choose>
            <xsl:when test="./cat = 'abc' > 0">

              <xsl:value-of select="ancestor::test/title"/>

            </xsl:when>
          </xsl:choose>
        </xsl:for-each>

        </xsl:for-each>
    </xsl:template>
</xsl:stylesheet>

必要な出力を生成する方法を教えてもらえますか?

4

2 に答える 2

2

わかりました、私はあなたの要件を理解したと思います。これはどうですか:

<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="kColor" match="test" use="set/color" />
  <xsl:param name="catValue" select="'abc'" />

  <xsl:template match="/*">
    <xsl:copy>
      <cat>
        <xsl:value-of select ="$catValue"/>
      </cat>
      <xsl:apply-templates 
        select="//test[generate-id() = 
                       generate-id(
                            key('kColor', set/color)
                                  [cetval/cat = $catValue][1]
                                  )
                      ]" />
      <xsl:apply-templates 
        select="//test[cetval/cat = $catValue and not(set/color)]
                      /title">
        <xsl:sort select="."/>
      </xsl:apply-templates>
    </xsl:copy>
  </xsl:template>

  <xsl:template match="test">
    <set>
      <xsl:apply-templates select="set/color" />
      <xsl:apply-templates
        select="key('kColor', set/color)[cetval/cat = $catValue]/title">
        <xsl:sort select="." />
      </xsl:apply-templates>
    </set>
  </xsl:template>

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

ここで$catValueはパラメータとして指定するので、外部から別の値を渡すことができます。これをサンプル XML で実行すると、結果は次のようになります。

<compound>
  <cat>abc</cat>
  <set>
    <color>blue</color>
    <title>k</title>
    <title>r</title>
  </set>
  <set>
    <color>yellow</color>
    <title>j</title>
    <title>w</title>
  </set>
  <title>i</title>
</compound>
于 2013-03-18T20:33:04.563 に答える
0

かなり短くて簡単

<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:key name="kTestByCat" match="test" use="cetval/cat"/>
 <xsl:key name="kTestByColor" match="test[cetval/cat='abc']"
      use="set/color"/>

 <xsl:template match="/">
  <compound>
    <cat>abc</cat>
      <xsl:apply-templates select=
      "/*/*[generate-id()
           =
            generate-id(key('kTestByColor',set/color)[1])]"/>
  </compound>
 </xsl:template>

 <xsl:template match="test">
  <set>
   <color><xsl:value-of select="set/color"/></color>
   <xsl:copy-of select="key('kTestByColor',set/color)/title"/>
  </set>
 </xsl:template>
</xsl:stylesheet>

この変換が提供された XML ドキュメントに適用されると、次のようになります。

<compound>
    <test>
        <title>k</title>
        <cetval>
            <cat>abc</cat>
            <cat>fcg</cat>
        </cetval>
        <value>1</value>
        <set>
            <color>blue</color>
        </set>
    </test>
    <test>
        <title>p</title>
        <cetval>
            <cat>fcg</cat>
            <cat>klm</cat>
        </cetval>
        <value>10</value>
        <set>
            <color>pink</color>
        </set>
    </test>
    <test>
        <title>j</title>
        <cetval>
            <cat>fcg</cat>
            <cat>klm</cat>
            <cat>abc</cat>
        </cetval>
        <value>484</value>
        <set>
            <color>yellow</color>
        </set>
    </test>
    <test>
        <title>v</title>
        <cetval>
            <cat>dji</cat>
            <cat>kfjsdlk</cat>
        </cetval>
        <value>93</value>
    </test>
    <test>
        <title>r</title>
        <cetval>
            <cat>deiu</cat>
            <cat>kfjdf</cat>
            <cat>abc</cat>
        </cetval>
        <value>10</value>
        <set>
            <color>blue</color>
        </set>
        <test>
            <title>i</title>
            <cetval>
                <cat>fcg</cat>
                <cat>klm</cat>
                <cat>abc</cat>
            </cetval>
            <value>10</value>
        </test>
        <test>
            <title>w</title>
            <cetval>
                <cat>diweif</cat>
                <cat>fjf</cat>
                <cat>abc</cat>
            </cetval>
            <value>10</value>
            <set>
                <color>yellow</color>
            </set>
        </test>
    </test>
</compound>

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

<compound>
   <cat>abc</cat>
   <set>
      <color>blue</color>
      <title>k</title>
      <title>r</title>
   </set>
   <set>
      <color>yellow</color>
      <title>j</title>
      <title>w</title>
   </set>
</compound>

のすべての分散値に対して同様の結果を生成したい場合はcat、これも短くて簡単です。

<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:key name="kCatByVal" match="cat" use="."/>
 <xsl:key name="kColorByVal" match="color" use="."/>
 <xsl:key name="kTestByCat" match="test" use="cetval/cat"/>

 <xsl:variable name="vDistinctColors" select=
  "/*/*/set/color[generate-id()=generate-id(key('kColorByVal',.)[1])]"/>

 <xsl:template match="/">
  <xsl:apply-templates select=
   "/*/*/cetval/cat
        [generate-id()
        = generate-id(key('kCatByVal',.)[1])]"/>
 </xsl:template>

 <xsl:template match="cat">
  <xsl:variable name="vcurCat" select="."/>
  <compound>
    <cat><xsl:apply-templates/></cat>
    <xsl:for-each select="$vDistinctColors">
     <xsl:apply-templates select=
      "(key('kCatByVal',$vcurCat)/../../set/color[.=current()])[1]">
       <xsl:with-param name="pCat" select="$vcurCat"/>
      </xsl:apply-templates>
    </xsl:for-each>
  </compound>
 </xsl:template>

 <xsl:template match="color">
  <xsl:param name="pCat"/>

  <xsl:copy-of select="."/>
  <xsl:copy-of select="key('kTestByCat',$pCat)[set/color=current()]/title"/>
 </xsl:template>
</xsl:stylesheet>

同じ XML ドキュメント (上記) に適用すると、結果は次のようになります。

<compound>
   <cat>abc</cat>
   <color>blue</color>
   <title>k</title>
   <title>r</title>
   <color>yellow</color>
   <title>j</title>
   <title>w</title>
</compound>
<compound>
   <cat>fcg</cat>
   <color>blue</color>
   <title>k</title>
   <color>pink</color>
   <title>p</title>
   <color>yellow</color>
   <title>j</title>
</compound>
<compound>
   <cat>klm</cat>
   <color>pink</color>
   <title>p</title>
   <color>yellow</color>
   <title>j</title>
</compound>
<compound>
   <cat>dji</cat>
</compound>
<compound>
   <cat>kfjsdlk</cat>
</compound>
<compound>
   <cat>deiu</cat>
   <color>blue</color>
   <title>r</title>
</compound>
<compound>
   <cat>kfjdf</cat>
   <color>blue</color>
   <title>r</title>
</compound>
于 2013-03-19T04:33:54.563 に答える