来自祖父母级别的XSLT兄弟

时间:2013-03-11 16:20:20

标签: xslt xpath xslt-grouping

我有一个如下所示的xml。我需要找到所有不同的货币。使用以下

 <xsl:for-each select="$itemPrices/Relationships/Relationship/Target
                       /Properties/PropertyItem[cs:Key='Currency']/cs:Value">

我已经能够获得所有货币类型,但有重复。我需要使用XSLT 1.0找到不同的值。我遇到了使用前后兄弟姐妹的解决方案,但我能够让兄弟姐妹处于同一水平。我无法构建一个XPath,它会升级到四级中的三个,然后查看可比较的下一个兄弟。

  <Relationship>
    <ModelName>Entities.Relationship</ModelName>
    <Properties />
    <Target>
      <ModelName>ItemPrice</ModelName>
      <Properties>
        <PropertyItem>
          <Key>Currency</Key>
          <Value i:type="a:string" xmlns:a="http://www.w3.org/2001/XMLSchema">US</Value>
        </PropertyItem>
        <PropertyItem>
          <Key>PriceValue</Key>
          <Value i:type="a:decimal" xmlns:a="http://www.w3.org/2001/XMLSchema">13.51</Value>
        </PropertyItem>
        <PropertyItem>
          <Key>ProductId</Key>
          <Value i:type="a:string" xmlns:a="http://www.w3.org/2001/XMLSchema">0600</Value>
        </PropertyItem>
      </Properties>
    </Target>
  </Relationship>
  <Relationship>
    <ModelName>Entities.Relationship</ModelName>
    <Properties />
    <Target>
      <ModelName>ItemPrice</ModelName>
      <Properties>
        <PropertyItem>
          <Key>Currency</Key>
          <Value i:type="a:string" xmlns:a="http://www.w3.org/2001/XMLSchema">US</Value>
        </PropertyItem>
        <PropertyItem>
          <Key>PriceValue</Key>
          <Value i:type="a:decimal" xmlns:a="http://www.w3.org/2001/XMLSchema">11.82</Value>
        </PropertyItem>
        <PropertyItem>
          <Key>ProductId</Key>
          <Value i:type="a:string" xmlns:a="http://www.w3.org/2001/XMLSchema">0600</Value>
        </PropertyItem>
      </Properties>
    </Target>
  </Relationship>
  <Relationship>
    <ModelName>Entities.Relationship</ModelName>
    <Properties />
    <Target>
      <ModelName>ItemPrice</ModelName>
      <Properties>
        <PropertyItem>
          <Key>Currency</Key>
          <Value i:type="a:string" xmlns:a="http://www.w3.org/2001/XMLSchema">Canadian</Value>
        </PropertyItem>
        <PropertyItem>
          <Key>PriceValue</Key>
          <Value i:type="a:decimal" xmlns:a="http://www.w3.org/2001/XMLSchema">10.95</Value>
        </PropertyItem>
        <PropertyItem>
          <Key>ProductId</Key>
          <Value i:type="a:string" xmlns:a="http://www.w3.org/2001/XMLSchema">0600</Value>
        </PropertyItem>
      </Properties>
    </Target>
  </Relationship>

所以在上面的XML中,我应该只获得美国和加拿大一次,而不是美国两次和加拿大一次。我怎样才能做到这一点?

1 个答案:

答案 0 :(得分:2)

虽然您可以使用preceding::而不是preceding-sibling::,但在XSLT 1.0中选择不同值的有效方法是使用Muenchian分组:

<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="kCurrency" match="PropertyItem[Key = 'Currency']/Value"
           use="."/>

  <xsl:template match="/">
    <xsl:variable name="allCurrencies"
                  select="Relationships/Relationship/Target/Properties
                          /PropertyItem[Key = 'Currency']/Value" />
    <xsl:for-each select="$allCurrencies[generate-id() = 
                  generate-id(key('kCurrency', .)[1])]">
      <currency>
        <xsl:value-of select="."/>
      </currency>
    </xsl:for-each>
  </xsl:template>
</xsl:stylesheet>

当一个<Relationships>元素被包裹在您的示例XML中并被送入此XSLT时,结果是:

<currency>US</currency>
<currency>Canadian</currency>