似乎我暂时无法理解Munechian分组,所以我需要寻求帮助..
我试图总结我的1型元素的价格。
我的XML文件看起来像这样。
<autoads>
<ad>
<type>1</type>
<name>Honda</name>
<model>XL 1000 V</model>
<regyear>2001</regyear>
<price>129900</price>
<addate>20020115</addate>
<volume>1000</volume>
<category></category>
</ad>
<ad>
<type>2</type>
<name>Nissan</name>
<model>Almera 1.4S</model>
<regyear>1997</regyear>
<price>119000</price>
<addate>20020118</addate>
<volume>0</volume>
<category>5 dörrar</category>
</ad>
....
</autoads>
所以我需要的是将类型1分组并将其中的价格加起来:
这是我到目前为止在我的XSL文件中所做的事情
<?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>
<h2>Fordon</h2>
<table border="1">
<tr bgcolor="#ccc">
<th>Namn</th>
<th>Modell</th>
<th>Beskrivning</th>
<th>Typ</th>
</tr>
<xsl:for-each select="//ad[type != '1']" >
<xsl:sort select="type" order="descending" />
<xsl:sort select="name"/>
<xsl:sort select="model"/>
<tr>
<td><xsl:value-of select="name" /></td>
<td><xsl:value-of select="model" /></td>
<td><xsl:value-of select="adtext" /></td>
<td><xsl:value-of select="type" /></td>
</tr>
</xsl:for-each>
</table>
<p>Summan av fordon är <xsl:value-of select="sum(//price)" /> SEK</p>
Antal bilar är <xsl:value-of select="count(/*/*/type[. = 2])"/><br />
</body>
</html>
</xsl:template>
</xsl:stylesheet>
我遇到的问题是我真的不知道在哪里放线,所以它们不会打扰我的其余代码。
由于
答案 0 :(得分:-1)
对于xslt,如果要总结类型1的所有价格
<xsl:value-of select="sum(//ad[type = '1']//price)" />