xslt 1.0 groupby,带有嵌套结构

时间:2013-11-25 20:41:30

标签: xml xslt xslt-1.0

给出一个看似如下的结构:

<feed>
    <entry>
        <summary>lorem ipsum 1</summary>
        <updated>2013-11-20T18:40:00Z</updated>
        <author>Jon</author>
    </entry>
    <entry>
        <summary>lorem ipsum 2</summary>
        <updated>2013-11-19T19:40:00Z</updated>
        <author>Jon</author>
    </entry>
    <entry>
        <summary>lorem ipsum 3</summary>
        <updated>2013-11-19T23:40:00Z</updated>
        <author>Rebecca</author>
    </entry>
    <entry>
        <summary>lorem ipsum 4</summary>
        <updated>2013-11-18T05:40:00Z</updated>
        <author>Paul</author>
    </entry>
</feed>

我想创建一个XSLT,它的输出类似于这个结构(名称在这里并不重要。)

<blah>
    <today>
        <date>2013-11-20</date>
        <post>
            <summary>lorem ipsum 1</summary>
            <updated>2013-11-20T18:40:00Z</updated>
            <author>Jon</author>
        </post>
    </today>

    <today>
        <date>2013-11-19</date>
        <post>
            <summary>lorem ipsum 2</summary>
            <updated>2013-11-19T19:40:00Z</updated>
            <author>Jon</author>
        </post>
        <post>
            <summary>lorem ipsum 3</summary>
            <updated>2013-11-19T23:40:00Z</updated>
            <author>Rebecca</author>
        </post>
    </today>

    <today>
        <date>2013-11-18</date>
        <post>
            <summary>lorem ipsum 4</summary>
            <updated>2013-11-18T05:40:00Z</updated>
            <author>Paul</author>
        </post>
    </today>
</blah>

我明白我应该使用其中一个methods defined for grouping,但我还没想到它。

<xsl:stylesheet 
    xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
<xsl:output method="xml" omit-xml-declaration="yes"/>

    <xsl:key name="groupbydate" match="entry" use="updated"/>

    <xsl:template match="feed">
        <blah>
          <xsl:apply-templates
                select="entry[
                    generate-id() 
                    = generate-id(key('groupbydate', updated)[1])]" />
        </blah>
    </xsl:template>

    <xsl:template match="entry">
        <!-- GET the date -->
        <xsl:variable name="date" select="substring(updated,1,10)"/>
        <today>
            <date><xsl:value-of select="$date"/></date>
        </today>
        <xsl:for-each select="entry">
            <xsl:if test="preceding-sibling::entry[substring(updated,1,10) = $date]">
            <post>
                <xsl:copy-of select="entry"/>
            </post>
        </xsl:if>
        </xsl:for-each>
    </xsl:template>

</xsl:stylesheet>

1 个答案:

答案 0 :(得分:1)

将您的密钥定义为

<xsl:key name="groupbydate" match="entry" use="substring-before(updated, 'T')"/>

然后你需要使用它,例如

<xsl:template match="feed">
    <blah>
      <xsl:apply-templates
            select="entry[
                generate-id() 
                = generate-id(key('groupbydate', substring-before(updated, 'T'))[1])]" />
    </blah>
</xsl:template>

然后使用

处理组中的每个第一项
<xsl:template match="entry">
  <today>
    <date><xsl:value-of select="substring-before(updated, 'T')"/></date>
    <xsl:apply-templates select="key('groupbydate', substring-before(updated, 'T'))" mode="entry"/>
  </today>
</xsl:template>

以及

中每个组中的项目
<xsl:template match="entry" mode="entry">
  <post>
    <xsl:copy-of select="node()"/>
  </post>
</xsl:template>