我有以下xml文件
?xml version="1.0"?>
<Schedule>
<Lesson>
<Title>Maths</Title>
<Lecture Classroom="100">
<Day>Tuesday</Day>
<Time>12:00</Time>
</Lecture>
<Lecture Classroom="101">
<Day>Thursday</Day>
<Time>11:00</Time>
</Lecture>
</Lesson>
<Lesson>
<Title>Scientific Computing</Title>
<Lecture Classroom="103">
<Day>Monday</Day>
<Time>09:00</Time>
</Lecture>
</Lesson>
}
我想简单地将元素设置为表格形式,但我希望它们按日排序并按组分组(例如,在Day =“Monday”上发生的课程在表格的第一行上并且与其他日子的课程颜色不同 我已经做到了这一点:
<table border="1">
<tr bgcolor="#888888 ">
<th>Title</th>
<th>Professor</th>
<th>Day</th>
</tr>
<xsl:for-each select="Schedule/Lesson">
<tr bgcolor="#F00000 ">
<td><xsl:value-of select="Title"/> </td>
<td><xsl:value-of select="Professor"/> </td>
<td><xsl:value-of select="Lecture/Day"/> </td>
</tr>
</xsl:for-each>
</table>
有关如何正确分类和着色的任何想法?
答案 0 :(得分:0)
<强> XML:强>
<?xml version="1.0"?>
<Schedule>
<Lesson>
<Title>Maths</Title>
<Lecture Classroom="100">
<Day>Tuesday</Day>
<Time>12:00</Time>
</Lecture>
<Lecture Classroom="101">
<Day>Thursday</Day>
<Time>11:00</Time>
</Lecture>
</Lesson>
<Lesson>
<Title>Scientific Computing</Title>
<Lecture Classroom="103">
<Day>Monday</Day>
<Time>09:00</Time>
</Lecture>
</Lesson>
</Schedule>
<强> XSL:强>
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
<xsl:template match="/">
<html>
<body>
<table border="1">
<tr bgcolor="#888888">
<th>Title</th>
<th>Professor</th>
<th>Day</th>
</tr>
<xsl:for-each select="Schedule/Lesson/Lecture">
<xsl:sort select="Day" />
<tr>
<td>
<xsl:value-of select="../Title" />
</td>
<td>
<xsl:value-of select="@Classroom" />
</td>
<xsl:choose>
<xsl:when test="Day = 'Monday'">
<td bgcolor="#F00000">
<xsl:value-of select="Day" />
</td>
</xsl:when>
<xsl:otherwise>
<td>
<xsl:value-of select="Day" />
</td>
</xsl:otherwise>
</xsl:choose>
</tr>
</xsl:for-each>
</table>
</body>
</html>
</xsl:template>
</xsl:stylesheet>
<强>输出:强>
<html>
<body>
<table border="1">
<tr bgcolor="#888888">
<th>Title</th>
<th>Professor</th>
<th>Day</th>
</tr>
<tr>
<td>Scientific Computing</td>
<td>103</td>
<td bgcolor="#F00000">Monday</td>
</tr>
<tr>
<td>Maths</td>
<td>101</td>
<td>Thursday</td>
</tr>
<tr>
<td>Maths</td>
<td>100</td>
<td>Tuesday</td>
</tr>
</table>
</body>
</html>
含义“Mondays
”将以HTML中的 RED 颜色显示。
如果需要,只需添加更多when test
即可为其他日期提供颜色。
<xsl:when test="Day = 'Tuesday'">
<td bgcolor="#C66666">
<xsl:value-of select="Day" />
</td>
您可能需要查看这些链接,以了解有关排序和颜色的更多信息。
答案 1 :(得分:0)
假设当您说“已排序”时,您的意思是按时间顺序排列,那么我建议您为Lecture
元素创建一个模板,在该元素中使用Day
元素的谓词来使其放置物品按顺序排列。然后,您可以使用属性的条件仅为星期一类着色。
以下是模板的外观
<xsl:template match="Schedule">
<table>
<tr>
<td>Title</td>
<td>Professor</td>
<td>Day</td>
</tr>
<xsl:apply-templates select="Lesson/Lecture[Day='Monday']"/>
<xsl:apply-templates select="Lesson/Lecture[Day='Tuesday']"/>
<xsl:apply-templates select="Lesson/Lecture[Day='Wednesday']"/>
<xsl:apply-templates select="Lesson/Lecture[Day='Thursday']"/>
<xsl:apply-templates select="Lesson/Lecture[Day='Friday']"/>
</table>
</xsl:template>
<xsl:template match="Lecture">
<tr>
<td>
<xsl:value-of select="../Title"/>
</td>
<td>
<xsl:value-of select="@Classroom"/>
</td>
<td>
<xsl:if test="Day = 'Monday'">
<xsl:attribute name="style">background-color:red;</xsl:attribute>
</xsl:if>
<xsl:value-of select="Day"/>
</td>
</tr>
</xsl:template>