我正在尝试从 ToDoList ( http://www.abstractspoon.com/tdl_resources.html ) 中的 XML 文件创建一个交叉表。这是一个示例 XML 文件:
<?xml version="1.0" encoding="utf-16" ?>
<TODOLIST PROJECTNAME="Projects">
<TASK TITLE="proj1" ID="1" NUMPERSON="1" PERSON="Chris" NUMTAGS="1" TAG="Caro" CALCTIMEESTIMATE="36"/>
<TASK TITLE="proj2" ID="2" NUMPERSON="1" PERSON="Chris" NUMTAGS="1" TAG="Nat" CALCTIMEESTIMATE="8" />
<TASK TITLE="proj4" ID="4" NUMPERSON="1" PERSON="Chris" NUMTAGS="1" TAG="Caro" CALCTIMEESTIMATE="36" />
<TASK TITLE="proj5" ID="5" NUMPERSON="1" PERSON="Sahb" NUMTAGS="1" TAG="Nat" CALCTIMEESTIMATE="128" />
<TASK TITLE="proj32" ID="32" NUMPERSON="2" PERSON="Seb" PERSON1="Chris" NUMTAGS="1" TAG="Nat" CALCTIMEESTIMATE="0.90" />
</TODOLIST>
每个任务都是一个元素,所有信息都是属性。我想制作一个这样的表格,其中标签作为第一行,人员作为第一列。
<table>
<tr>
<td></td>
<td>Caro</td>
<td>Nat</td>
</tr>
<tr>
<td>Chris</td>
<td>72</td>
<td>8</td>
</tr>
<tr>
<td>Sahb</td>
<td>128</td>
<td>0</td>
</tr>
<tr>
<td>Seb, Chris</td>
<td>0</td>
<td>9</td>
</tr>
</table>
如您所见,同一个人可以有很多项目,我想根据标签为每个人添加 CALCTIMEESTIMATE。我可以得到第一行
<xsl:key name="dtag" match="/TODOLIST/TASK/@TAG" use="." />
<xsl:for-each select="TASK/@TAG[generate-id() = generate-id(key('dtag', .)[1])]">
<td>
<xsl:value-of select="."/>
</td>
</xsl:for-each>
但是 sum 函数并没有给出预期的结果。我错过了什么?有没有一种简单的方法可以根据两个属性进行求和?ToDoList 使用 XSLT 1.0,这就是我不能使用 distinct-values 的原因。
这是完整的 XSLT,我尝试了很多不同的东西,在这里我试图让它只为 Chris 工作,但它不会加起来他的 2 个项目。
<xsl:template match="TODOLIST">
<xsl:text disable-output-escaping="yes"><!DOCTYPE html></xsl:text>
<html>
<head>
<title>Projects..</title>
</head>
<body>
<table>
<caption>Projects..</caption>
<thead>
<tr>
<td></td>
<xsl:for-each select="TASK/@TAG[generate-id() = generate-id(key('dtag', .)[1])]">
<th scope="col">
<xsl:value-of select="."/>
</th>
</xsl:for-each>
</tr>
</thead>
<tbody>
<xsl:apply-templates select="TASK/@PERSON[generate-id() = generate-id(key('dperson', .)[1])]" />
</tbody>
</table>
</body>
</html>
</xsl:template>
<xsl:template match="TASK/@PERSON">
<tr>
<th scope="row">
<xsl:value-of select="."/>
</th>
<xsl:apply-templates select="/TODOLIST/TASK/@TAG[generate-id() = generate-id(key('dtag', .)[1])]" />
</tr>
</xsl:template>
<xsl:template match="/TODOLIST/TASK/@TAG">
<td>
<xsl:value-of select="sum(../@CALCTIMEESTIMATE[../@PERSON = 'Chris'])" />
</td>
</xsl:template>