私は次のXMLを持っています:
<?xml version="1.0" encoding="ISO-8859-1"?>
<entries>
<entry>
<title>Entry 1</title>
<prices>
<price>10</price>
<price>50</price>
</prices>
</entry>
<entry>
<title>Entry 2</title>
<prices>
<price>200</price>
<price>300</price>
</prices>
</entry>
<entry>
<title>Entry 3</title>
<prices>
<price>70</price>
<price>500</price>
</prices>
</entry>
</entries>
各要素には複数の値札があります。要素ごとに最大価格を選択し、それを残りの要素との比較に使用したいと思います。
私のxsltは次のとおりです。
<?xml version="1.0" encoding="ISO-8859-1"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:template match="/">
<html>
<body>
<table border="1">
<tr>
<th>Title</th>
<th>Highest Price</th>
</tr>
<xsl:for-each select="entries/entry">
<xsl:sort select="prices/price" order="descending" data-type="number"/>
<tr>
<td><xsl:value-of select="title"/></td>
<td><xsl:value-of select="prices/price"/></td>
</tr>
</xsl:for-each>
</table>
</body>
</html>
</xsl:template>
</xsl:stylesheet>
動作しません。それは以下を生成します:
Title Highest Price
Entry 2 200
Entry 3 70
Entry 1 10
それが生成する必要がありますが:
Title Highest Price
Entry 3 500
Entry 2 300
Entry 1 50
教えてください。XSLT1を使用する必要があるため、実際には使用できません。
<xsl:sort select="max(prices/price)" order="descending" data-type="number"/>
..。