想要在xsl中添加每个节点的价格值。但是这些值也可以有-9756vc(例如)值的类型,不需要包含在总和中,然后它给出NaN作为我不想要的结果。我无法弄清楚如何做到这一点。 下面是示例XML:
<?xml version="1.0" encoding="UTF-8"?>
<catalog>
<cd>
<title>Empire Burlesque</title>
<artist>Bob Dylan</artist>
<country>USA</country>
<company>Columbia</company>
<price>-9756vc</price>
<year>1985</year>
</cd>
<cd>
<title>Hide your heart</title>
<artist>Bonnie Tyler</artist>
<country>UK</country>
<company>CBS Records</company>
<price>9.90</price>
<year>1988</year>
</cd>
<cd>
<title>Greatest Hits</title>
<artist>Dolly Parton</artist>
<country>USA</country>
<company>RCA</company>
<price>9.90</price>
<year>1982</year>
</cd>
</catalog>
我正在尝试的代码。
<?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>My CD Collection</h2>
<table border="1">
<tr bgcolor="#9acd32">
<th style="text-align:left">Title</th>
<th style="text-align:left">Artist</th>`enter code here`
</tr>
<xsl:for-each select="catalog/cd">
<tr>
<xsl:variable name="color" select="format-number(price,'0.##')" />
<xsl:choose>
<xsl:when test="$color = 'NaN' ">
<td> <xsl:value-of select="'0'"/> </td>
</xsl:when>
<xsl:otherwise>
<td><xsl:value-of select="$color"/></td>
</xsl:otherwise>
</xsl:choose>
<td><xsl:value-of select="artist"/></td>
</tr>
</xsl:for-each>
<xsl:for-each select="catalog/cd">
<xsl:variable name="color" select="format-number(price,'0.##')" />
<xsl:choose>
<xsl:when test="$color != 'NaN' ">
<xsl:variable name="Sum" select ="$color + 1"/>
<xsl:value-of select="$Sum"/>
</xsl:when>
</xsl:choose>
</xsl:for-each>
</table>
</body>
</html>
</xsl:template>
</xsl:stylesheet>
答案 0 :(得分:1)
值得指出的是,变量在XSLT中是不可变的,一旦设置就无法更改。这意味着您无法对 xsl:for-each 的 cd 元素进行迭代,并保持运行总计。
但是,您可以使用 sum 函数,这可以与xpath表达式结合使用,只选择具有数字价格的 cd 元素。如果您转到XPath test if node value is number,您将看到检查节点是否为数字的方法如下:
number(price) = price
因此,要获得所有有效价格的总和,您可以这样做
<xsl:value-of select="sum(catalog/cd[number(price) = price]/price)" />
此行将替换XSLT中的第二个 xsl:for-each 循环。对于您的XML,它将返回值19.8