在XSLT中按属性值对XML节点进行分组

时间:2011-08-30 13:29:47

标签: xml xslt xpath

我对xslt转换很新,我需要一种转换方面的帮助。我需要通过其中一个属性对某些类型的所有节点进行分组,并列出每种属性的父节点。它是对文档中某些内容的使用进行总结。我将提出简化的例子 的输入

<root>
<node name="node1">
    <somechild child-id="1">
</node>
<node name="node2">
    <somechild child-id="2">
</node>
<node name="node3">
    <somechild child-id="1">
</node>
<node name="node4">
    <somechild child-id="2">
</node>
<node name="node5">
    <somechild child-id="3">
</node>
</root>

期望的输出:

<root>
<somechild child-id="1">
    <is-child-of>
        <node name="node1" />
        <node name="node3" />
    </is-child-of>
</somechild>
<somechild child-id="2">
    <is-child-of>
        <node name="node2" />
        <node name="node4" />
    </is-child-of>
</somechild>
<somechild child-id="3">
    <is-child-of>
        <node name="node5" />
    </is-child-of>
</somechild>
</root>

想法是,如果在许多节点中它们具有相同的元素,则它们具有相同的子ID。 我需要找到所有人都使用的。 我发现这个问题XSLT transformation to xml, grouping by key有点类似但是有一个关于开始的所有作者的声明,我没有这样的,总是只是一个孩子。

2 个答案:

答案 0 :(得分:5)

<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
    <xsl:output method="xml" indent="yes"/>

    <xsl:key name="k" match="somechild" use="@child-id"/>
    <xsl:key name="n" match="node" use="somechild/@child-id"/>

    <xsl:template match="root">
        <xsl:copy>
            <xsl:apply-templates 
                select="//somechild[generate-id(.) = generate-id(key('k', @child-id))]"/>
        </xsl:copy>
    </xsl:template>

    <xsl:template match="somechild">
        <xsl:copy>
            <xsl:apply-templates select="@*"/>

            <is-child-of>
                <xsl:apply-templates select="key('n', @child-id)"/>
            </is-child-of>
        </xsl:copy>

    </xsl:template>

    <xsl:template match="node">
        <xsl:copy>
            <xsl:apply-templates select="@*"/>
        </xsl:copy>
    </xsl:template>

    <xsl:template match="@*">
        <xsl:copy>
            <xsl:apply-templates select="@*"/>
        </xsl:copy>
    </xsl:template>

</xsl:stylesheet>

输出:

<root>
  <somechild child-id="1">
    <is-child-of>
      <node name="node1" />
      <node name="node3" />
    </is-child-of>
  </somechild>
  <somechild child-id="2">
    <is-child-of>
      <node name="node2" />
      <node name="node4" />
    </is-child-of>
  </somechild>
  <somechild child-id="3">
    <is-child-of>
      <node name="node5" />
    </is-child-of>
  </somechild>
</root>

答案 1 :(得分:1)

您可以尝试以下方法吗?

<!-- select the current child id to filter by -->
<xsl:variable name="id" select="somechild/@child-id"/>
<!-- select the nodes which have a somechild element with the child-id to look for -->
<xsl:for-each select="/root//some-child[@child-id = $id]/..">
   <!-- for each such node, do something -->
</xsl:for-each>