合并两个列表中的节点属性

时间:2014-11-10 18:34:42

标签: xslt

基于Create list of nodes by copying from another lists,我想在两个列表中组合节点的属性。我们说我有以下xml:

<root>
    <vo>
        <field name="userLoginName"       nameLDAP="uid"              type="String"/>
        <field name="displayName"         nameLDAP="displayName"      type="String"/>
        <field name="firstName"           nameLDAP="givenName"        type="String"/>
        <field name="lastName"            nameLDAP="sn"               type="String"/>
        <field name="mail"                nameLDAP="mail"             type="String"/>
        <field name="userPassword"        nameLDAP="userPassword"     type="String" hidden="true"/>
        <field name="center"              nameLDAP="center"           type="String"/>
    </vo>
    <input>
        <field name="userPassword" mode="REPLACE"/>
        <field name="oldPasswordInQuotes" nameLDAP="unicodePwd"       type="byte[]" mode="ADD"/>
    </input>
</root>

我希望将两个列表组合在之前提到的问题中,但是从两个列表中获取属性。所以在这种情况下,输出就像这样。

<field name="userPassword" nameLDAP="userPassword" type="String" hidden="true" mode="REPLACE"/>
<field name="oldPasswordInQuotes" nameLDAP="unicodePwd" type="byte[]" mode="ADD"/>

字段userPassword结合了vo / field [@name =&#39; userPassword&#39;加上输入/字段的属性[@name =&#39; userPassword&#39;。如果输入/字段和vo / field中都存在属性,则输入/字段中的值优先。对于字段oldPasswordInQuotes,vo中没有相应的节点,因此应该按原样复制。

1 个答案:

答案 0 :(得分:1)

这实际上可能比你想象的要简单:

XSLT 1.0

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

<xsl:key name="vo" match="vo/field" use="@name" />

<xsl:template match="/">
    <xsl:for-each select="root/input/field">
        <xsl:copy>
            <xsl:copy-of select="key('vo', @name)/@*"/>
            <xsl:copy-of select="@*"/>
        </xsl:copy>
     </xsl:for-each>
</xsl:template>

</xsl:stylesheet>