嘿,我有一个关于作业的快速问题
我的xml中有一个列表,列出了像这样的电影商店的流派:
.....
<genre ID="G3" name="Action"/>
<genre ID="G4" name="Romance"/>
<genre ID="G5" name="Sci-fi">
....更多
以及与以下类型有关的电影列表:
<movie ID = "F6" titel ="Blood Work" year = "2002" length = "109">
<!-- Genres -->
<genre ID ="G11" />
<genre ID ="G7" />
.....
在图片中,您可以看到到目前为止我得到了什么。而不是流派ID(G5和G3)等等,我想要它的名称。 那就是我到目前为止最累的事情:
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:template match="/">
<html>
<body>
<xsl:apply-templates select="*"/>
</body>
</html>
</xsl:template>
<xsl:template match="movieshop">
<table border="1">
<tr bgcolor="#9acd32">
<!--Strukturierung der Tabelle -->
<th>ID</th>
<th>Title</th>
<th>Description</th>
<th>Genre</th>
<th>Length (in Minuten)</th>
<th>Year</th>
</tr>
<!--fill table with the elements movies -->
<xsl:for-each select="//movieshop/movies/movie">
<tr>
<!-- ID of the movie -->
<td><xsl:value-of select="@ID"/></td>
<!-- titel of the movie -->
<td><xsl:value-of select="@titel"/></td>
<!-- Description of the movie -->
<td><xsl:value-of select="details/@inhalt"/></td>
<!-- Genre of the movie -->
<td>
<xsl:for-each select="genre/@ID">
<xsl:call-template name="resultGenres">
<xsl:with-param name="id" select="."/>
</xsl:call-template>
</xsl:for-each>
</td>
<!-- Length -->
<td><xsl:value-of select="@length"/></td>
<!-- Year -->
<td><xsl:value-of select="@year"/></td>
</tr>
</xsl:for-each>
</table>
</xsl:template>
<xsl:template name="resultGenres">
<xsl:param name="id"/>
<!--Just testing what id is -->
<p>Genre: <xsl:value-of select = "$id" /></p>
<xsl:for-each select="//movieshop/genres/genre[ID=$id]">
<xsl:call-template name="resultGenre"/>
</xsl:for-each>
</xsl:template>
<xsl:template name="resultGenre">
<xsl:value-of select="//movieshop/genres/genre/@name"/>
<br/>
</xsl:template>
</xsl:stylesheet>
错误必须在此处某处:
<xsl:for-each select="//movieshop/genres/genre[ID=$id]">
我的列表中甚至没有G1之类的结果集。 对不起,如果我在代码中拼写错误。尝试将所有单词改为英语。 在此先感谢:D