具有嵌套结构的xslt 1.0 groupby



给定一个看起来像的结构

<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>

我知道我可能应该使用为分组定义的方法之一,但我还没有弄清楚。

<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>

将密钥定义为

<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>

相关内容

  • 没有找到相关文章

最新更新