我知道XSLT的Muenchian分组方法,但我看到的所有实现都依赖于一个节点作为分组值。在这种情况下,我想在一个节点集上进行分组。在下面的输入中,我想对输出/输出部分进行分组。
我试着构建这样的密钥
<xsl:key name="refsKey" match="/processes/process" use="outputs/output_part_ref"/>
当然,output_part_ref与第一个节点匹配,与节点集不匹配。
输入
<?xml version="1.0" encoding="UTF-8"?>
<processes>
<process>
<name>ProcessA</name>
<input_qty>1200</input_qty>
<outputs>
<output_part_ref>1</output_part_ref>
<output_part_ref>2</output_part_ref>
<output_part_ref>3</output_part_ref>
</outputs>
</process>
<process>
<name>ProcessB</name>
<input_qty>1300</input_qty>
<outputs>
<output_part_ref>1</output_part_ref>
<output_part_ref>2</output_part_ref>
<output_part_ref>3</output_part_ref>
</outputs>
</process>
<process>
<name>ProcessC</name>
<input_qty>770</input_qty>
<outputs>
<output_part_ref>1</output_part_ref>
<output_part_ref>2</output_part_ref>
</outputs>
</process>
</processes>
样本输出
<html>
...
<table>
<tr>
<td>2500</td>
<td>1</td>
<td>2</td>
<td>3</td>
</tr>
<tr>
<td>770</td>
<td>1</td>
<td>2</td>
</tr>
</table>
...
</html>
如果构成密钥的元素数量不是固定的,那么我同意Michael的观点,我们需要首先计算密钥,并在XSLT1.0:中使用exsl:node-set
或类似方法
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:exsl="http://exslt.org/common" exclude-result-prefixes="exsl">
<xsl:output method="html" indent="yes"/>
<xsl:key name="refsKey" match="process" use="key"/>
<xsl:variable name="rtf1">
<xsl:apply-templates select="processes/process" mode="key"/>
</xsl:variable>
<xsl:template match="process" mode="key">
<xsl:copy>
<key>
<xsl:for-each select="outputs/output_part_ref">
<xsl:sort select="." data-type="number"/>
<xsl:if test="position() > 1">|</xsl:if>
<xsl:value-of select="."/>
</xsl:for-each>
</key>
<xsl:copy-of select="node()"/>
</xsl:copy>
</xsl:template>
<xsl:variable name="ns1" select="exsl:node-set($rtf1)/process"/>
<xsl:template match="/">
<html>
<body>
<xsl:apply-templates/>
</body>
</html>
</xsl:template>
<xsl:template match="processes">
<table>
<xsl:apply-templates select="$ns1[generate-id() = generate-id(key('refsKey', key)[1])]"/>
</table>
</xsl:template>
<xsl:template match="process">
<tr>
<td><xsl:value-of select="sum(key('refsKey', key)/input_qty)"/></td>
<xsl:for-each select="outputs/output_part_ref">
<td>
<xsl:value-of select="."/>
</td>
</xsl:for-each>
</tr>
</xsl:template>
</xsl:stylesheet>