我想连接两个 xml 文件。 这是 input1.xml:
<schema>
<sequence>
<section id="xxx">
<nodeA id="a">
<fruit id="small">
<orange id="x" method="create">
<attributes>
<color>Orange</color>
<year>2000</year>
</attributes>
</orange>
</fruit>
</nodeA>
<nodeB id="b">
<dog id="large">
<doberman id="x" method="create">
<condition>
<color>Black</color>
</condition>
</doberman>
</dog>
</nodeB>
</section>
</sequence>
</schema>
在这里 input2.xml
<schema>
<sequence>
<section id="xxx">
<nodeA id="a">
<fruit id="small">
<melon id="x" method="create">
<attributes>
<color>Green</color>
</attributes>
</melon>
</fruit>
<lemon id="z" method="delete" />
</nodeA>
<nodeA id="b">
<fruit id="small">
<lime id="x" method="create">
<attributes>
<color>Yellow</color>
<year>2001</year>
</attributes>
</lime>
</fruit>
</nodeA>
<nodeB id="b">
<dog id="small">
<poodle id="x" method="create">
<condition>
<color>White</color>
</condition>
</poodle>
</dog>
</nodeB>
<nodeB id="c">
<dog id="small">
<terrier id="x" method="delete" />
</dog>
</nodeB>
</section>
</sequence>
</schema>
我的输出:
<schema>
<sequence>
<section id="xxx">
<nodeA id="a">
<fruit id="small">
<orange id="x" method="create">
<attributes>
<color>Orange</color>
<year>2000</year>
</attributes>
</orange>
</fruit>
<fruit id="small">
<melon id="x" method="create">
<attributes>
<color>Green</color>
</attributes>
</melon>
</fruit>
<lemon id="z" method="delete"/>
</nodeA>
<nodeB id="b">
<dog id="large">
<doberman id="x" method="create">
<condition>
<color>Black</color>
</condition>
</doberman>
</dog>
<dog id="small">
<poodle id="x" method="create">
<condition>
<color>White</color>
</condition>
</poodle>
</dog>
</nodeB>
</section>
</sequence>
</schema>
虽然预期的输出是:
<schema>
<sequence>
<section id="xxx">
<nodeA id="a">
<fruit id="small">
<orange id="x" method="create">
<attributes>
<color>Orange</color>
<year>2000</year>
</attributes>
</orange>
</fruit>
<fruit id="small">
<melon id="x" method="create">
<attributes>
<color>Green</color>
</attributes>
</melon>
</fruit>
<lemon id="z" method="delete"/>
</nodeA>
<nodeB id="b">
<dog id="large">
<doberman id="x" method="create">
<condition>
<color>Black</color>
</condition>
</doberman>
</dog>
<dog id="small">
<poodle id="x" method="create">
<condition>
<color>White</color>
</condition>
</poodle>
</dog>
</nodeB>
<nodeA id="b"> <!-- I'm missing this node -->
<fruit id="small">
<lime id="x" method="create">
<attributes>
<color>Yellow</color>
<year>2001</year>
</attributes>
</lime>
</fruit>
</nodeA>
<nodeB id="c"> <!-- I'm missing this node -->
<dog id="small">
<terrier id="x" method="delete" />
</dog>
</nodeB>
</section>
</sequence>
</schema>
XSLT 文件如下所示:
<xsl:stylesheet version="2.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:a="http://a.com">
<xsl:strip-space elements="*" />
<xsl:output indent="yes" method="xml" />
<xsl:param name="input2"/>
<xsl:variable name="to-merge" select="document($input2)" />
<xsl:function name="a:id">
<xsl:param name="ctx"/>
<xsl:value-of select="concat($ctx/local-name(), $ctx/@id)"/>
</xsl:function>
<xsl:key name="match" match="/schema/sequence/section/*" use="a:id(.)"/>
<xsl:template match="@* | node()">
<xsl:copy>
<xsl:apply-templates select="@* | node()"/>
</xsl:copy>
</xsl:template>
<xsl:template match="*[count(. | key('match', a:id(.))) = count(key('match', a:id(.)))]">
<xsl:copy>
<xsl:apply-templates select="@* | node()"/>
<xsl:variable name="id" select="a:id(.)"/>
<xsl:for-each select="$to-merge">
<xsl:apply-templates select="key('match', $id)/*"/>
</xsl:for-each>
</xsl:copy>
</xsl:template>
</xsl:stylesheet>
如何修改 xslt 文件以产生所需的输出?这里的关键是保持节点的顺序。如果文件1中存在节点,我们将其合并,如果不存在,则根据它们出现的顺序将其放在底部。
非常感谢。
约翰