我正在尝试在XSLT 1.0中使用XSLT 2.0中的分组功能。我有代码在XSLT 2.0中工作,但我的处理器不处理xslt 2.0。所以我在xslt 1.0中使用group-by函数需要一些帮助。
XML数据:
<table>
<row>
<month>03</month>
<year>2016</year>
<Id>10101</Id>
<Number>1</Number>
<code>A2004</code>
</row>
<row>
<month>03</month>
<year>2016</year>
<type>A</type>
<Id>10101</Id>
<Number>2</Number>
<code>A2004</code>
</row>
<row>
<month>04</month>
<year>2015</year>
<Id>10122</Id>
<Number>1</Number>
<code>A2004</code>
</row>
</table>
我正在尝试将此xml分组到ID级别及其中的数字。
<test>
<xsl:for-each-group select="$table" group-by="Id">
<xsl:variable name="var2_resultof_group_items" as="item()+" select="current-group()"/>
</xsl:variable>
<row>
<xsl:attribute name="Id">
<xsl:value-of select="normalize-space(current-grouping-key())"/>
</xsl:attribute>
<xsl:for-each select="$var2_resultof_group_items">
<xsl:attribute name="month">
<xsl:value-of select="month"/>
</xsl:attribute>
</xsl:for-each>
<xsl:for-each select="$var2_resultof_group_items">
<xsl:attribute name="year">
<xsl:value-of select="year"/>
</xsl:attribute>
</xsl:for-each>
<xsl:for-each-group select="$var2_resultof_group_items" group-by="Number">
<xsl:variable name="var1_resultof_group_items" as="item()+" select="current-group()"/>
<line>
<xsl:attribute name="number" select="current-grouping-key()"/>
<xsl:for-each select="$var1_resultof_group_items">
<xsl:attribute name="code">
<xsl:value-of select="code"/>
</xsl:attribute>
</xsl:for-each>
</line>
</xsl:for-each-group>
</row>
</xsl:for-each-group>
</test>
这是我用xslt 2.0代码获得的输出(所需输出),但我不知道如何使用xslt 1.0执行此操作
<test>
<row Id="10101" month="03" year="2016">
<line Number="1" code="A2004"/>
<line Number="2" code="A2004"/>
</row>
<row Id="10122" month="04" year="2015">
<line Number="1" code="A2004"/>
</row>
</test>
我可以使用XLST 1.0直到下面的输出,但我不知道如何实现ID的分组,然后是其中的数字:
<test>
<row Id="10101" month="03" year="2016">
<line Number="1" code="A2004"/>
</row>
<row Id="10101" month="03" year="2016">
<line Number="2" code="A2004"/>
</row>
<row Id="10122" month="04" year="2015">
<line Number="1" code="A2004"/>
</row>
</test>
答案 0 :(得分:1)
这是一个更简单,更短,几乎完全在&#34; 推送&#34;风格解决方案:
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output omit-xml-declaration="yes" indent="yes"/>
<xsl:key name="kRowById" match="row" use="Id"/>
<xsl:template match="/*">
<test>
<xsl:apply-templates/>
</test>
</xsl:template>
<xsl:template match="row[generate-id() = generate-id(key('kRowById', Id)[1])]">
<row id="{Id}">
<xsl:apply-templates select="key('kRowById', Id)" mode="inGroup"/>
</row>
</xsl:template>
<xsl:template match="row" mode="inGroup">
<line Number="{Number}" code="{code}"/>
</xsl:template>
<xsl:template match="text()"/>
</xsl:stylesheet>
在提供的XML文档上应用此转换时:
<table>
<row>
<month>03</month>
<year>2016</year>
<Id>10101</Id>
<Number>1</Number>
<code>A2004</code>
</row>
<row>
<month>03</month>
<year>2016</year>
<type>A</type>
<Id>10101</Id>
<Number>2</Number>
<code>A2004</code>
</row>
<row>
<month>04</month>
<year>2015</year>
<Id>10122</Id>
<Number>1</Number>
<code>A2004</code>
</row>
</table>
产生了想要的正确结果:
<test>
<row id="10101">
<line Number="1" code="A2004"/>
<line Number="2" code="A2004"/>
</row>
<row id="10122">
<line Number="1" code="A2004"/>
</row>
</test>
<强>解释强>:
Muenchian分组。
使用标准XSLT函数generate-id()
进行节点标识比较。
使用AVT(属性 - 值模板)
使用模式。
使用内置的XSLT(又名&#34;默认&#34;)模板。
答案 1 :(得分:0)
您可以尝试使用此muenchian grouping XSLT 1.0 解决方案:
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="xml" indent="yes"/>
<xsl:key name="kid" match="row" use="Id"/>
<xsl:template match="table">
<test>
<xsl:for-each select="row [
count ( key('kid',./Id)[1] | . ) = 1 ]">
<xsl:variable name="this" select="."/>
<row>
<xsl:attribute name="Id">
<xsl:value-of select="Id"/>
</xsl:attribute>
<xsl:attribute name="month">
<xsl:value-of select="month"/>
</xsl:attribute>
<xsl:attribute name="year">
<xsl:value-of select="year"/>
</xsl:attribute>
<xsl:for-each select="key('kid', $this/Id)">
<line>
<xsl:attribute name="number" >
<xsl:value-of select="Number"/>
</xsl:attribute>
<xsl:attribute name="code">
<xsl:value-of select="code"/>
</xsl:attribute>
</line>
</xsl:for-each>
</row>
</xsl:for-each>
</test>
</xsl:template>
</xsl:stylesheet>
使用以下输出:
<test>
<row Id="10101" month="03" year="2016">
<line number="1" code="A2004"/>
<line number="2" code="A2004"/>
</row>
<row Id="10122" month="04" year="2015">
<line number="1" code="A2004"/>
</row>
</test>