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 个这样的屏幕。

目前说我选择了 5 个选项,我可以得到 A、B、B、otherbox 和 otherbox

如果 A 被多次选择,我希望它只显示 A 并且对于 G 的所有字母都相同

问题出现在 H 的另一个盒子上,它可以有多个

所以你可以有

A、B、C、D、E、F、G、H、H、H、H 和 H

我希望这是有道理的,并且非常感谢任何解决方案。

NB 重要的是要注意每个屏幕都创建了 XML,所以我可以有 99 个不同的 XML,每次都选择不同的东西。这就是 for-each 部分比较棘手的地方。也许它可以检测是否选择了超过 1 个 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 回答