我有以下 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>
每个元素都有多个价格标签,我想选择每个元素的 MAX 价格并将其用于与其余元素进行比较。
我的 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"/>
...