使用 XSLT 关联相关项



我有以下 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>

有人可以建议我一种方法来完成这项工作吗?任何帮助将不胜感激。

XSLT 具有用于解析交叉引用的内置密钥机制:

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>

相关内容

  • 没有找到相关文章