我正在尝试使用XSLT显示大学课程时间表。我的DTS看起来像这样:
<?xml version="1.0" encoding="UTF-8"?>
<!ELEMENT timetable (day,day,day,day,day,day,day)>
<!ELEMENT day (session)*>
<!ELEMENT session (begin,end,(course?))>
<!ELEMENT course (#PCDATA)>
<!ELEMENT begin (#PCDATA)>
<!ELEMENT end (#PCDATA)>
我想在日/小时表中显示所有课程,看起来像这样(借口可怕的设计):
麻烦的是,我想做一个for each
子句,但只是常规数字,而不是xml的部分。这可能与XSLT有关吗?例如,它可能看起来像这样:
/* for each time = 8..17, do: */
<xsl:for-each select="timetable/day">
<xsl:value-of select="session[[begin</*time*/ or begin=/*time*/]/course" />
</xsl:for-each>
答案 0 :(得分:2)
您可以使用递归
<xsl:template name="for_i_from_8_to_17">
<xsl:param name="i">8</xsl:param> <!-- initial value -->
<!-- do what you have to do -->
<xsl:if test="not($i = 17)">
<xsl:call-template name="for_i_from_8_to_17">
<xsl:with-param name="i">
<xsl:value-of select="$i + 1">
</xsl:with-param>
</xsl:call-template>
</xsl:if>
</xsl:template>
(稍微改编自xsl-list@mulberrytech.com)
答案 1 :(得分:2)
在XSLT 2.0中:
<xsl:variable name="timetable" select="timetable">
<table>
<thead>
.. output the table heading ..
</thead>
<tbody>
<xsl:for-each select="8 to 17">
<tr>
<xsl:variable name="hour" select="."/>
<td><xsl:value-of select="$hour, '-', $hour+1"/></td>
<xsl:for-each select="$timetable/day">
<td><xsl:value-of
select="session[begin lt $hour+1 and end gt $hour]/course"/>
</td>
</xsl:for-each>
</xsl:for-each>
</tbody>
</table>
加上关于格式化的一些工作。
答案 2 :(得分:0)
您可以使用递归:
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="xml" indent="yes"/>
<xsl:template match="/">
<html>
<head>
<style type="text/css">td{border:solid 1px black} table{border-collapse:collapse}</style>
</head>
<table>
<xsl:call-template name="for">
<xsl:with-param name="count" select="10"/>
</xsl:call-template>
</table>
</html>
</xsl:template>
<xsl:template name="for">
<xsl:param name="i" select="0"/>
<xsl:param name="count"/>
<xsl:if test="$i < $count">
<tr>
<td>
<xsl:value-of select="concat($i + 8, ':00 - ', $i + 9, ':00')"/>
</td>
</tr>
<xsl:call-template name="for">
<xsl:with-param name="i" select="$i + 1"/>
<xsl:with-param name="count" select="$count"/>
</xsl:call-template>
</xsl:if>
</xsl:template>
</xsl:stylesheet>
输出:
答案 3 :(得分:0)
每个循环需要2个。一个迭代一周的日子,一个循环一天的小时。 使用XSLT 2.0可以很容易地解决一天中的小时:
<xsl:for-each select="8 to 17">
<!-- do your stuff -->
<xsl:value-of select="." /> <!-- dot represents a number from the range -->
</xsl:fo-each>
有关序列和范围的完整报道,请参见this。