使用XSLT关联相关项目

时间:2016-03-22 00:17:01

标签: xml xslt xslt-1.0 xslt-2.0

我有以下xml输入,

<Adult>
    <Parent>
        <Id>1</Id>
        <Name>Nick</Name>
        <Age>32</Age>
    </Parent>
    <Parent>
        <Id>2</Id>
        <Name>Michael</Name>
        <Age>35</Age>
    </Parent>
    <Information xmlns="http://ws.apache.org/ns/synapse" xmlns:ns="www.abc.com">
        <Children xmlns="">
            <Child>
                <Name>Anne</Name>
                <Gender>Female</Gender>
                <ParentId>1</ParentId>
            </Child>
            <Child>
                <Name>Will</Name>
                <Gender>Male</Gender>
                <ParentId>1</ParentId>
            </Child>
            <Child>
                <Name>Carney</Name>
                <Gender>Female</Gender>
                <ParentId>2</ParentId>
            </Child>
        </Children>
    </Information>
</Adult>

目前我将所有孩子都放在根元素下。但我需要将每个孩子与其关联的父母分组。例如,parentId = 1的所有子元素都应该位于带有Id - 1的父元素下。最后它应该如下所示。

<Adult>
    <Parent>
        <Id>1</Id>
        <Name>Nick</Name>
        <Age>32</Age>
         <Children>
            <Child>
                <Name>Anne</Name>
                <Gender>Female</Gender>
                <ParentId>1</ParentId>
            </Child>
            <Child>
                <Name>Will</Name>
                <Gender>Male</Gender>
                <PareinId>1</PareinId>
            </Child>
        </Children>
    </Parent>
    <Parent>
        <Id>2</Id>
        <Name>Michael</Name>
        <Age>35</Age>
         <Children>
            <Child>
                <Name>Carney</Name>
                <Gender>Female</Gender>
                <ParentId>2</ParentId>
            </Child>
        </Children>
    </Parent>
</Adult>

有人可以建议我这样做的方法。任何帮助将不胜感激。

1 个答案:

答案 0 :(得分:1)

XSLT有一个内置的key机制来解决交叉引用:

XSLT 2.0

<xsl:stylesheet version="2.0" 
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:syn="http://ws.apache.org/ns/synapse"
exclude-result-prefixes="syn">
<xsl:output method="xml" version="1.0" encoding="UTF-8" indent="yes"/>
<xsl:strip-space elements="*"/>

<xsl:key name="child" match="Child" use="ParentId" />

<xsl:template match="@*|node()">
    <xsl:copy copy-namespaces="no">
        <xsl:apply-templates select="@*|node()"/>
    </xsl:copy>
</xsl:template>

<xsl:template match="Parent">
    <xsl:copy>
        <xsl:apply-templates/>
        <Children>
            <xsl:apply-templates select="key('child', Id)"/>
        </Children>
    </xsl:copy>
</xsl:template>

<xsl:template match="syn:Information"/>

</xsl:stylesheet>