0

次のドロップダウンがあります

<xsl:if test="bankguarantee!=0">
            <li style="font-family:Arial,Arial MT,Luxi Sans,Verdana; font-size:10pt; margin:0cm 0cm 0pt; ">
                <p style="font-family:Arial,Arial MT,Luxi Sans,Verdana; font-size:10pt; margin:0cm 0cm 0pt; ">
                    <span style="font-family:Arial,Arial MT,Luxi Sans,Verdana; font-size:11.0pt; ">The terms and conditions of <xsl:if test="bankguarantee='1'">the </xsl:if>
            <xsl:if test="bankguarantee!='1'">each </xsl:if>
    <xsl:for-each select="bankguarantees/bankguaranteedata">
    <xsl:if test="producttypes/option[@id='A']='selected'">A</xsl:if>
    <xsl:if test="producttypes/option[@id='B']='selected'">B</xsl:if>
    <xsl:if test="producttypes/option[@id='C']='selected'">C</xsl:if>
    <xsl:if test="producttypes/option[@id='D']='selected'">D</xsl:if>
    <xsl:if test="producttypes/option[@id='E']='selected'">E</xsl:if>
    <xsl:if test="producttypes/option[@id='F']='selected'">F</xsl:if>
    <xsl:if test="producttypes/option[@id='G']='selected'">G</xsl:if>
    <xsl:if test="producttypes/option[@id='H']='selected'"><xsl:value-of select="otherprodtypebox"/></xsl:if>
  <xsl:if test="position()!=last() and position()!=last()-1">
    <xsl:text>, </xsl:text>
  </xsl:if>
  <xsl:if test="position()=last()-1">
    <xsl:text> and </xsl:text>
  </xsl:if>
  <xsl:if test="position()=last()">
    <xsl:text></xsl:text>
  </xsl:if></xsl:for-each>
</xsl:if>

および次のxml

<producttypes>
                <option id="A">selected</option>
                <option id="B"/>
                <option id="C"/>
                <option id="D"/>
                <option id="E"/>
                <option id="F"/>
                <option id="G"/>
                <option id="H"/>
            </producttypes>
        <otherprodtypebox/>

現時点では基本的にすべて正常に動作しますが、複数の発生を避け、他のすべてのボックスを最後に配置したいと考えています。これらの画面は 99 個あります。

現時点では、A、B、B、otherbox、otherbox を取得できる 5 つのオプションを選択するとします。

A が複数回選択された場合に A のみを表示し、G までのすべての文字について同じようにしたい

問題は、倍数を持つことができるHの他のボックスに付属しています

あなたが持つことができるように

A, B, C, D, E, F, G, H, H, H, H AND H

これが理にかなっていることを願っており、解決策は非常に高く評価されています。

NB XML は画面ごとに作成されるため、毎回異なるものが選択された 99 の異なる XML を使用できることに注意してください。これは、for-each の部分が難しいところです。おそらく、複数の A が選択されているかどうかを検出できます。ありがとう

4

2 に答える 2

1

これを XSLT ファイルの先頭付近に追加するのはどうでしょうか。

<xsl:key name="productOption" match="producttypes/option[. = 'selected']" use="@id"/>

for-eachループを次のfor-eachループに置き換えます。

  <xsl:for-each 
   select="bankguarantees/bankguaranteedata/producttypes/option[generate-id(.) = generate-id(key('productOption', @id)[1]) or @id = 'H']">
    <xsl:sort select="count(preceding-sibling::option)" data-type="number" />
    <xsl:if test="@id = 'A'">A</xsl:if>
    <xsl:if test="@id = 'B'">B</xsl:if>
    <xsl:if test="@id = 'C'">C</xsl:if>
    <xsl:if test="@id = 'D'">D</xsl:if>
    <xsl:if test="@id = 'E'">E</xsl:if>
    <xsl:if test="@id = 'F'">F</xsl:if>
    <xsl:if test="@id = 'G'">G</xsl:if>
    <xsl:if test="@id = 'H'">
      <xsl:value-of select="../../otherprodtypebox"/>
    </xsl:if>
    <xsl:if test="position()!=last() and position()!=last()-1">
      <xsl:text>, </xsl:text>
    </xsl:if>
    <xsl:if test="position() = last()-1">
      <xsl:text> and </xsl:text>
    </xsl:if>
  </xsl:for-each>

この入力で実行すると:

<bankguarantees>
  <bankguaranteedata>
    <producttypes>
      <option id="A">selected</option>
      <option id="B"/>
      <option id="C"/>
      <option id="D"/>
      <option id="E"/>
      <option id="F"/>
      <option id="G"/>
      <option id="H"/>
    </producttypes>
    <otherprodtypebox>sprockets</otherprodtypebox>
  </bankguaranteedata>
  <bankguaranteedata>
    <producttypes>
      <option id="A">selected</option>
      <option id="B"/>
      <option id="C"/>
      <option id="D">selected</option>
      <option id="E"/>
      <option id="F"/>
      <option id="G"/>
      <option id="H">selected</option>
    </producttypes>
    <otherprodtypebox>widgets</otherprodtypebox>
  </bankguaranteedata>
  <bankguaranteedata>
    <producttypes>
      <option id="A">selected</option>
      <option id="B">selected</option>
      <option id="C"/>
      <option id="D">selected</option>
      <option id="E"/>
      <option id="F"/>
      <option id="G"/>
      <option id="H">selected</option>
    </producttypes>
    <otherprodtypebox>cogs</otherprodtypebox>
  </bankguaranteedata>

</bankguarantees>

次の出力が生成されます。

A, B, D, widgets and cogs
于 2013-01-22T18:05:22.923 に答える
0

重複を取り除くことは、一般に「グループ化」という名前で行われます。お気に入りの XSLT 教科書の索引でグループ化について調べると、多くの情報が見つかります。

XSLT 2.0 にはこれに対する優れた解決策があり、XSLT 1.0 には醜い解決策があるため、答えは使用しているバージョンに大きく依存しますが、それについては言及していません。

于 2013-01-22T21:28:41.787 に答える