我对 XSLT1.0 有疑问。任务是仅使用 XSL 模板以 HTML 格式写出由给定作者编写的所有书籍。
<?xml version="1.0" encoding="UTF-8"?>
<books>
<book author="herbert">
<name>Dune</name>
</book>
<book author="herbert">
<name>Chapterhouse: Dune</name>
</book>
<book author="pullman">
<name>Lyras's Oxford</name>
</book>
<book author="pratchett">
<name>I Shall Wear Midnight</name>
</book>
<book author="pratchett">
<name>Going Postal</name>
</book>
<author id="pratchett"><name>Terry Pratchett</name></author>
<author id="herbert"><name>Frank Herbert</name></author>
<author id="pullman"><name>Philip Pullman</name></author>
</books>
到目前为止,我有这个解决方案。
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
<xsl:output method="html"/>
<xsl:template match="/">
<html>
<head/>
<body>
<table border="1">
<xsl:apply-templates select="//author"/>
</table>
</body>
</html>
</xsl:template>
<xsl:template match="author">
<tr>
<td>
<xsl:value-of select="name/text()"/>
</td>
<td>
<xsl:value-of select="@id"/>
</td>
<td>
<xsl:apply-templates select="/books/book[@id=@author]"/>
--previous XPath does not work properly, it should choose only those books that are written by the given author (that this template matches)
</td>
</tr>
</xsl:template>
<xsl:template match="book">
<xsl:value-of select="name/text()"/>
</xsl:template>
</xsl:stylesheet>
但是有一个问题,在评论中解释了。
谢谢 Martin 和 Marzipan - 现在可以了。还有一件事。如果我想用逗号分隔每个作者的书名怎么办?我提出了这个解决方案,但是有没有更优雅的方法来实现这个?
...
<xsl:apply-templates select="/books/book[current()/@id=@author][not(position()=last())]" mode="notLast"/>
<xsl:apply-templates select="/books/book[current()/@id=@author][last()]"/>
</td>
</tr>
</xsl:template>
<xsl:template match="book">
<xsl:value-of select="name/text()"/>
</xsl:template>
<xsl:template match="book" mode="notLast">
<xsl:value-of select="name/text()"/>
<xsl:text> , </xsl:text>
</xsl:template>
</xsl:stylesheet>
我刚刚意识到我的问题已经被 Marzipan 回答了。那么问题就解决了。