-1

编辑:重构的问题和代码

扩展这个问题...

我有一个 XML 提要,它以以下格式表示呈现的开始和结束时间:2012-06-06 10:45,其中每个节点都以这种方式表示:

<session id="9c4716c71f" name="Session 1" starttime="2012-06-06 10:45" endtime="2012-06-06 12:45" location="" chair="">
  <article code="c1" id="TT-282" type="presentation"></article>
  <article code="c2" id="TT-301" type="presentation"></article>
  ...
</session>
<session id="9c4716c249z" name="Session 2" starttime="2012-06-06 14:45" endtime="2012-06-06 16:45" location="" chair="">
  <article code="c1" id="TT-214" type="presentation"></article>
  <article code="c2" id="TT-328" type="presentation"></article>
  ...

在上一个问题中,我只关心按时间分组,但是现在我也想在日期(2012 年 6 月 6 日)对所有这些进行分组。

因此,理想情况下,我将首先按日期分组输出,然后按时间分组(正如我将在以下代码中显示的那样)。

我有一个模板,我应用它来显示该部分:

<!-- formatting dateTime -->
<xsl:template name="formatDate">
  <xsl:param name="dateTime" />
  <xsl:variable name="date" select="substring-before($dateTime, ' ')" />
  <xsl:variable name="year" select="substring-before($date, '-')" />
  <xsl:variable name="month" select="number(substring-before(substring-after($date, '-'), '-'))" />
  <xsl:variable name="day" select="number(substring-after(substring-after($date, '-'), '-'))" />

  <!-- output -->
  <xsl:choose>
    <xsl:when test="$month = '1'">January</xsl:when>
    <xsl:when test="$month = '2'">February</xsl:when>
    <xsl:when test="$month = '3'">March</xsl:when>
    <xsl:when test="$month = '4'">April</xsl:when>
    <xsl:when test="$month = '5'">May</xsl:when>
    <xsl:when test="$month = '6'">June</xsl:when>
    <xsl:when test="$month = '7'">July</xsl:when>
    <xsl:when test="$month = '8'">August</xsl:when>
    <xsl:when test="$month = '9'">September</xsl:when>
    <xsl:when test="$month = '10'">October</xsl:when>
    <xsl:when test="$month = '11'">November</xsl:when>
    <xsl:when test="$month = '12'">December</xsl:when>
  </xsl:choose>
  <xsl:value-of select="' '" />
  <xsl:value-of select="$day" />
  <xsl:value-of select="', '" />
  <xsl:value-of select="$year" />
</xsl:template>

<!-- formatting dateTime -->
<xsl:template name="formatTime">
  <xsl:param name="dateTime" />
  <xsl:value-of select="substring-after($dateTime, ' ')" />
</xsl:template>

我以这种方式应用它:

<h4>
  <!-- output DD-MM-YYYY -->
  <xsl:call-template name="formatDate">
    <xsl:with-param name="dateTime" select="@starttime" />
  </xsl:call-template>
</h4>

这是我目前的分组方法。可以看出,它直接在未格式化的日期2012-06-06 10:45时间($cdate$ctime

<xsl:template match="session">

  <xsl:variable name="cdate">
    <xsl:call-template name="formatDate">
      <xsl:with-param name="dateTime" select="@starttime" />
    </xsl:call-template>
  </xsl:variable>


  <xsl:if test='not(preceding-sibling::session[@starttime = current()/@starttime])'>
    <h2><xsl:value-of select="@starttime" /></h2>
    <div><xsl:apply-templates /></div>
  </xsl:if>
</xsl:template>

<xsl:template match="article">
  <b><xsl:value-of select="@name" /></b>
</xsl:template>

所以,目前我看到页面上显示了一个独特的@startime 值列表。我非常非常喜欢看到的输出(我仍在使用 XSLT 思维方式)是这样的:

June 06, 2012
  10:45 - 12:45  |    TT-282
                 |    TT-301
  ----------------------------------
  14:45 - 16:45  |    TT-214
                 |    TT-328

June 07, 2012
  ....

在这一点上,我不太关心直接格式,但只是希望能够拥有这个基于变量的两部分分组。绝对感谢任何和所有帮助。

4

1 回答 1

1

使用 XSLT 1.0,您可以使用变量进行两次转换,然后使用扩展函数,exsl:node-set例如

<xsl:stylesheet
  xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
  xmlns:exsl="http://exslt.org/common"
  exclude-result-prefixes="exsl"
  version="1.0">

<xsl:variable name="temp-doc">
  <!-- now create the nodes here you want to process later on in a second pass -->
</xsl:variable>

<xsl:key name="k2" match="foo" use="bar"/>

<xsl:template match="/">
  <!-- here we are processing the nodes in the variable obtained from the first pass of prcocesssing -->
  <xsl:apply-templates select="exsl:node-set($temp-doc)//foo[generate-id() = generate-id(key('k2', bar)[1])]"/>
</xsl:template>

<xsl:template match="foo">...</xsl:template>

</xsl:stylesheet>
于 2012-10-07T09:31:09.880 回答