我有一个例子xml,在下面,
<?xml version="1.0" encoding="UTF-8"?>
<Root>
<Row>
<Group>Group A</Group>
<Date>2013-09-02</Date>
<Value>200</Value>
</Row>
<Row>
<Group>Group A</Group>
<Date>2013-09-02</Date>
<Value>500</Value>
</Row>
<Row>
<Group>Group A</Group>
<Date>2013-10-02</Date>
<Value>400</Value>
</Row>
<Row>
<Group>Group B</Group>
<Date>2013-09-02</Date>
<Value>250</Value>
</Row>
</Root>
我有一个xslt(版本1.0),用于通过动态列汇总数据。我有代码创建HTML表,结果显示正确的列数和正确的行数,我无法获取表的主体中的单元格来汇总上面的XML的“值”节点中的值
XSLT:
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:lookup="http://any.com/lookup" exclude-result-prefixes="lookup">
<xsl:output method="html" indent="yes" encoding="UTF-8" />
<xsl:decimal-format name="NN" NaN="-" />
<lookup:Dates>
<Date value="2013-09-02" />
<Date value="2013-10-02" />
<Date value="2013-11-04" />
<Date value="2013-12-02" />
<Date value="2014-01-02" />
<Date value="2014-02-03" />
<Date value="2014-03-03" />
</lookup:Dates>
<xsl:key name="Dates" match="/xsl:stylesheet/lookup:Dates" use="Date" />
<xsl:key name="Group" match="Row" use="Group" />
<xsl:template match="/">
<html>
<head>
<style type="text/css">
table {border:1px solid #000;border-collapse:collapse}
td {border:1px solid #000;border-collapse:collapse}
</style>
</head>
<body>
<table cellpadding="4" cellspacing="0">
<tr>
<td>Group</td>
<xsl:for-each select="document('')/*/lookup:Dates/Date">
<td>
<xsl:value-of select="@value" />
</td>
</xsl:for-each>
</tr>
<xsl:for-each select="/Root/Row[count(. | key('Group', Group)[1])=1]">
<xsl:sort select="Group" data-type="text" order="ascending" />
<xsl:variable name="curGroup" select="key('Group', Group)" />
<tr>
<td>
<xsl:value-of select="$curGroup/Group" />
</td>
<xsl:for-each select="document('')/*/lookup:Dates/Date">
<td>
<xsl:value-of select="sum($curGroup[/Root/Row/Date=current()/Dates/Date]/Value)" />
</td>
</xsl:for-each>
</tr>
</xsl:for-each>
</table>
</body>
</html>
</xsl:template>
</xsl:stylesheet>
生成的HTML是:
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<style type="text/css">
table {border:1px solid #000;border-collapse:collapse}
td {border:1px solid #000;border-collapse:collapse}
</style>
</head>
<body><table cellpadding="4" cellspacing="0">
<tr>
<td>Group</td>
<td>2013-09-02</td>
<td>2013-10-02</td>
<td>2013-11-04</td>
<td>2013-12-02</td>
<td>2014-01-02</td>
<td>2014-02-03</td>
<td>2014-03-03</td>
</tr>
<tr>
<td>Group A</td>
<td>0</td>
<td>0</td>
<td>0</td>
<td>0</td>
<td>0</td>
<td>0</td>
<td>0</td>
</tr>
<tr>
<td>Group B</td>
<td>0</td>
<td>0</td>
<td>0</td>
<td>0</td>
<td>0</td>
<td>0</td>
<td>0</td>
</tr>
</table></body>
</html>
我出错的任何想法?我假设它在行
中的xpath中<xsl:value-of select="sum($curGroup[/Root/Row/Date=current()/Dates/Date]/Value)" />
非常感谢
格雷厄姆
答案 0 :(得分:0)
如果你想添加一个总行,那么这样做是行不通的......
<xsl:for-each select="document('')/*/lookup:Dates/Date">
<td class="right">
<xsl:value-of select="sum(Root/Row[Date=current()/@value]/Value)" />
</td>
</xsl:for-each>
这是因为在 xsl:for-each 循环中,您的上下文是 Date 元素,因此执行根/行将与此相关。
解决方案只是定义一个包含所有 Row 元素的变量(在循环之前),然后引用它。试试这个:
<xsl:variable name="allGroups" select="//Row" />
<xsl:for-each select="//Dates/Date">
<td>
<xsl:value-of select="sum($allGroups[Date=current()/@value]/Value)" />
</td>
</xsl:for-each>