我已经开始玩XSLT,并且遇到了一些问题。我已经设法使用一系列值的选择指令输出我的XML文档,但是在我自己编写XSLT模板时我真的很挣扎。
这是我的XML:
<?xml version="1.0" ?>
<?xml-stylesheet type="text/xsl" href="lecturers.xsl"?>
<lecturers>
<lecturer>
<name>
<title>Professor</title>
<first>Peter </first> <last>Quirk</last>
</name>
<teaching>
<course code="CO3070">XML and the Web</course>
<course code="CO3300"> Web Server Architectures</course>
</teaching>
<research>
The application of Web protocols to Biology
</research>
</lecturer>
<lecturer>
<name>
<title>Doctor</title>
<first>Brian </first> <last>Johnson</last>
</name>
<teaching>
<course code="CO9999">Computer Hacking</course>
<course code="CO3300"> Web Server Architectures</course>
</teaching>
<research>
Investigating the various complexities of Computer Hacking
</research>
</lecturer>
然后,这是我目前的XSL:
<?xml version="1.0"?>
<xsl:stylesheet version='1.0' xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="html" version="4.0" />
<xsl:template match="/">
<html>
<head>
<title>XML Week 7</title>
</head>
<body>
<h1>Week 7: Lecturers file turned to XSL:Template</h1>
<table border="1">
<tr>
<th><b>Title</b></th>
<th><b>Name</b></th>
<th><b>Teaching</b></th>
<th><b>Research</b></th>
</tr>
<tr>
<td><xsl:value-of select="lecturers/lecturer/name/title" /></td>
<td><xsl:value-of select="lecturers/lecturer/name/first" /><xsl:text> </xsl:text><xsl:value-of select="lecturers/lecturer/name/last" /></td>
<td><xsl:value-of select="lecturers/lecturer/teaching/course" /> and <xsl:value-of select="(lecturers/lecturer/teaching/course)[2]" /></td>
<td><xsl:value-of select="lecturers/lecturer/research" /></td>
</tr>
</table>
</body>
</html>
</xsl:template>
</xsl:stylesheet>
这会将我需要的信息输出到表中,但我已被指示创建新模板来保存讲师元素,然后是该元素的课程子项。我可能只是在脑子里过于复杂,但我无法让它工作,每当我尝试将模板应用到其中一个td时我只是在浏览器中遇到解析错误。那么,有没有人对我有任何提示?非常感谢,甚至一些基本的例子来解释如何让它在我的例子中工作将是一流的。干杯。
答案 0 :(得分:2)
使用一个模板来创建结果文档结构,例如
<xsl:template match="/">
<html>
<head>
<title>XML Week 7</title>
</head>
<body>
<xsl:apply-templates/>
</body>
</html>
</xsl:template>
然后编写更多模板以创建内容,例如
<xsl:template match="lecturers">
<h1>Week 7: Lecturers file turned to XSL:Template</h1>
<table border="1">
<tr>
<th><b>Title</b></th>
<th><b>Name</b></th>
<th><b>Teaching</b></th>
<th><b>Research</b></th>
</tr>
<xsl:apply-templates/>
</table>
</xsl:template>
<xsl:template match="lecturer">
<tr>
<td><xsl:value-of select="name/title" /></td>
<td><xsl:value-of select="name/first" /><xsl:text> </xsl:text><xsl:value-of select="name/last" /></td>
<td><xsl:value-of select="teaching/course" /> and <xsl:value-of select="(teaching/course)[2]" /></td>
<td><xsl:value-of select="lecturers/lecturer/research" /></td>
</tr>
</xsl:template>
如您所见,模板执行apply-templates
以保持处理。
[编辑]
在回复您的评论时,如果您想为lecturer
元素的不同子元素或后代元素使用更多模板,您可以使用
<xsl:template match="lecturer">
<tr>
<xsl:apply-templates/>
</tr>
</xsl:template>
然后为元素编写模板,例如
<xsl:template match="name/title | research">
<td>
<xsl:value-of select="."/>
</td>
</xsl:template>
<xsl:template match="name/first">
<td>
<xsl:value-of select="concat(., ' ', ../last)"/>
</td>
</xsl:template>
<!-- don't output name/last as the name/first template already does -->
<xsl:template match="name/last"/>
<xsl:template match="teaching">
<xsl:apply-templates select="course"/>
</xsl:template>
<xsl:template match="course">
<xsl:if test="position() > 1"><xsl:text> and </xsl:text></xsl:if>
<xsl:value-of select="."/>
</xsl:template>
答案 1 :(得分:1)
您目前的位置:
<tr>
<td><xsl:value-of select="lecturers/lecturer/name/title" /></td>
<td><xsl:value-of select="lecturers/lecturer/name/first" /><xsl:text> </xsl:text><xsl:value-of select="lecturers/lecturer/name/last" /></td>
<td><xsl:value-of select="lecturers/lecturer/teaching/course" /> and <xsl:value-of select="(lecturers/lecturer/teaching/course)[2]" /></td>
<td><xsl:value-of select="lecturers/lecturer/research" /></td>
</tr>
您希望拨打apply-templates
并拥有lecturer
模板。
<xsl:template match="lecturer">
<tr>
<td><xsl:value-of select="name/title" /></td>
<td><xsl:value-of select="name/first" /><xsl:text> </xsl:text><xsl:value-of select="name/last" /></td>
<td><xsl:value-of select="teaching/course" /> and <xsl:value-of select="(teaching/course)[2]" /></td>
<td><xsl:value-of select="research" /></td>
</tr>
</xsl:template>