使用xslt合并和更新两个xml的节点值

时间:2015-02-04 15:08:44

标签: xml xslt xslt-1.0 osb

我是XSLT中的新宠。 但我相信下面的要求可以用XSLT来实现:) 现在我有一个要求,我需要将2个不同的xmls合并为一个,并且应该检查xslt应该能够检查节点名称,如果input1 / nodeName与input2 / nodeName匹配则需要从input2填充值。

例如:

Input1 xml:

<Parent>
    <C1>123</C1>
    <C2>Incorrect data</C2>
    <C3>789</C3>
</Parent>

输入2 xml:

<NewParent>
  <C2>CorrectData</C2>
</NewParent>

输出:应该是

<Parent>
    <C1>123</C1>
    <C2>CorrectData</C2>
    <C3>789</C3>
</Parent>

我在XSLT下面尝试合并两者,但没有找到解决方案。

<xsl:stylesheet version="1.0"
    xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
    <xsl:output method="xml" indent="yes" />
    <xsl:param name="input1" select="input1.xml" />
    <xsl:param name="input2" select="input2.xml" />
    <xsl:template match="@* | node()">
        <xsl:copy>
            <xsl:apply-templates select="@* | node()" />
        </xsl:copy>
    </xsl:template>
    <xsl:template match="/">
        <xsl:copy>
            <xsl:for-each select="/*">
                <xsl:choose>
                    <xsl:when
                        test="$input1//node() = $input2//node()">
                        <xsl:value-of select="$input2/node()" />
                    </xsl:when>
                    <xsl:otherwise>
                        <xsl:apply-templates select="@* | node()" />
                    </xsl:otherwise>
                </xsl:choose>
            </xsl:for-each>
        </xsl:copy>
    </xsl:template>
</xsl:stylesheet>

并且样式表终止时出现一些节点设置错误。

注意:要获得结果,我们不应在XSLT代码中指定任何nodeName(如c1,c2)。它应该是通用的。

如果需要进一步的信息,请告诉我。如果我的问题不清楚,也请告诉我。

1 个答案:

答案 0 :(得分:0)

试试这个:

<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="xml" indent="yes" />
<xsl:variable name="input1" select="document('input1.xml')" />
<xsl:variable name="input2" select="document('input2.xml')" />
<xsl:template match="@* | node()">
    <xsl:copy>
        <xsl:apply-templates select="@* | node()" />
    </xsl:copy>
</xsl:template>
<xsl:template match="/">
    <xsl:copy>
        <xsl:for-each select="$input1/*">
            <xsl:copy>
                <xsl:for-each select="*">
                    <xsl:choose>
                        <xsl:when test="name() = $input2//name()">
                            <xsl:copy-of select="$input2/*/node()" />
                        </xsl:when>
                        <xsl:otherwise>
                            <xsl:copy-of select="." />
                        </xsl:otherwise>
                    </xsl:choose>
                </xsl:for-each>
            </xsl:copy>
        </xsl:for-each>
    </xsl:copy>
</xsl:template>
</xsl:stylesheet>

输出:

<Parent>
 <C1>123</C1>
 <C2>CorrectData</C2>
 <C3>789</C3>
</Parent>