不进行排序的 XSLT 编号节点



我有以下xml:

<policy>
    <games>
         <game startTime="11:00"/>
         <game startTime="11:20"/>
         <game startTime="11:40"/>
    </games>
    <games>
         <game startTime="11:10"/>
         <game startTime="11:30"/>
         <game startTime="11:50"/>
    </games>
</Policy>

我正在尝试编写一个 xslt,它将为每个游戏节点添加一个新属性并按时间顺序添加值,例如

<policy>
    <games>
         <game startTime="11:00" id="1"/>
         <game startTime="11:20" id="3"/>
         <game startTime="11:40" id="5"/>
    </games>
    <games>
         <game startTime="11:10" id="2"/>
         <game startTime="11:30" id="4"/>
         <game startTime="11:50" id="6"/>
    </games>
</policy>

我需要游戏节点保持其当前顺序,所以我不确定 xsl:sort 是否有效。

目前我有这个,显然只是按当前顺序对它们进行编号,而不会考虑时间属性:

<xsl:template match="game">
    <xsl:copy>
      <xsl:attribute name="id">
        <xsl:value-of select="count(preceding::game) + 1"/>
      </xsl:attribute>
      <xsl:apply-templates select="@*|node()"/>
    </xsl:copy>
</xsl:template>

我希望有比这更好的方法:

<xsl:template match="game">
    <xsl:copy>
        <xsl:variable name="time" select="@startTime" />
        <xsl:for-each select="//game">
            <xsl:sort select="@startTime" />
            <xsl:if test="current()/@startTime = $time">
                <xsl:attribute name="id">
                    <xsl:value-of select="position()"/>
                </xsl:attribute>
            </xsl:if>
        </xsl:for-each>
        <xsl:apply-templates select="@*|node()"/>
    </xsl:copy>
</xsl:template>

如果您将匹配模板替换为

<xsl:template match="game">
  <xsl:variable name="current_time" select="number(substring-before(@startTime,':'))*60 + number(substring-after(@startTime,':'))"/>
  <xsl:copy>
    <xsl:attribute name="id">
      <xsl:value-of select="count(../../games/game[number(substring-before(@startTime,':'))*60 + number(substring-after(@startTime,':')) &lt; $current_time]) + 1"/>
    </xsl:attribute>
    <xsl:apply-templates select="@*|node()"/>
  </xsl:copy>
</xsl:template>

您还将获得所需的结果。此方法不使用排序,但对于每个条目,计算当前条目下的所有条目。这是一项非常有趣的任务,因为我今天了解到一个惊人的事实,即您无法在 XSLT 1.0 中比较字符串!尽管保留了原始模板的整体结构(与 @Rubens 的解决方案相比),但它需要将时间字符串转换为数字。当然,这很不方便。但是,您可能必须向其他解决方案添加一些额外的字符串功能,以使其在 10:00 点之前的时间方面也很可靠。

顺便说一下:如果时间戳出现多次,则编号对应于有间隙的排名(而不是没有间隙的密集排名)。

相关内容

  • 没有找到相关文章