0

私はそのようないくつかのxml構造を持っています:

<Work>
<Good id ="1">
<outputList>
<outputRow id = "111" pid = "1" pos ="null" desc="List 1"/>
<outputRow id = "112" pid = "111" pos ="null" desc="Category 1"/>
<outputRow id = "113" pid = "112" pos ="1.1" desc="Position 1.1"/>
<outputRow id = "114" pid = "113" pos ="1.1.1" desc="Position 1.1.1"/>
</outputList>
</Good>
<Good id ="2">
<outputList>
<outputRow id = "111" pid = "1" pos ="null" desc="List 1"/>
<outputRow id = "112" pid = "111" pos ="null" desc="Category 1"/>
<outputRow id = "113" pid = "112" pos ="1.1" desc="Position 1.1"/>
<outputRow id = "114" pid = "113" pos ="1.1.1" desc="Position 1.1.1"/>
<outputRow id = "211" pid = "1" pos ="null" desc="List 2"/>
<outputRow id = "212" pid = "211" pos ="null" desc="Category 3"/>
<outputRow id = "213" pid = "212" pos ="3.1" desc="Position 3.1"/>
<outputRow id = "214" pid = "213" pos ="3.1.1" desc="Position 3.1.1"/>
</outputList>
</Good>
<Work>

次のような出力が必要です: For each good, for each list in each listOutput for this good 私はリスト位置のツリーを見たいです。上記の例について、私が見たいのは:

良い (1) リスト 1. カテゴリ 1. 位置 1.1 位置 1.1.1

良い (2) リスト 1. カテゴリ 1. 位置 1.1 位置 1.1.1

リスト 2. カテゴリ 3. 位置 3.1 位置 3.1.1

xsl:key を使用して、parentId で子要素を取得します。

<xsl:key name="elementsByPid" match="ns1:outputRow[@pid]" use="@pid" />

この重要な関数は、リストのカテゴリと位置のツリーを作成するために再帰的に使用しています。

<xsl:template match="/ns1:Work/ns1:Good">
      <w:p wsp:rsidR="007E1332" wsp:rsidRDefault="007E1332" wsp:rsidP="007E1332">
        <w:pPr>
          <w:spacing w:before="40" />
        </w:pPr>
        <w:r wsp:rsidRPr="00557C88">
          <w:rPr>
            <w:b-cs />
            <w:i-cs />
            <w:lang w:val="EN-US" />
          </w:rPr>
          <w:t>
           <xsl:text>Good (</xsl:text>
      <xsl:value-of select="position()"></xsl:value-of>
            <xsl:text>) </xsl:text>
      </w:t>
      </w:r>   
      </w:p> 
    <xsl:apply-templates select="./ns1:outputList" mode="table" />
  </xsl:template>


   <xsl:template match="/ns1:Work/ns1:Good/ns1:outputList" mode="table">
        </xsl:attribute>
      </xsl:for-each>
      <xsl:apply-templates select="./ns1:outputRow[@pid=1]" mode="row" />
   </xsl:template>

  <xsl:template match="/ns1:Work/ns1:Good/ns1:outputList/ns1:outputRow" mode="row">
    <w:p wsp:rsidR="007E1332" wsp:rsidRDefault="007E1332" wsp:rsidP="007E1332">
      <w:pPr>
        <w:spacing w:before="40" />
      </w:pPr>
      <w:r wsp:rsidRPr="00557C88">
        <w:rPr>
          <w:b-cs />
          <w:i-cs />
          <w:lang w:val="EN-US" />
        </w:rPr>
        <w:t>
          <xsl:text>Пункт:</xsl:text>
          <xsl:value-of select="./@pos"/>
          <xsl:text>Описание: </xsl:text>
          <xsl:value-of select="./@desc"/>
        </w:t>
      </w:r>
    </w:p>
  <xsl:apply-templates select="key('elementsByPid', ./@id)" mode="row"/>
  </xsl:template>

問題は、キー マッチ パターンがすべての outputRows で @pid を検索するように見えることですが、コンテキストから現在の良いものを outputRows でのみ検索するようにする必要があります。とにかくこれを達成することは可能ですか?

4

1 に答える 1