gpt4 book ai didi

xslt - 将 xml 作为参数传递给 xslt 并替换 xml

转载 作者:行者123 更新时间:2023-12-01 05:46:08 25 4
gpt4 key购买 nike

<分区>

Possible Duplicate:
XSLT for replace attribute in XML element if it exists in another XML?

我有两个 XML:

第一个 XML:

<FirstXML>
<catalog>
<cd>
<title>Empire Burlesque</title>
<artist>Bob Dylan</artist>
<country>USA</country>
<company>Columbia</company>
<price>10.90</price>
<year>1985</year>
</cd>
</catalog>
</FirstXML>

第二个 XML:

<SecondXML>
<catalog>
<cd>
<title>Hide your heart</title>
<artist>Bonnie Tyler</artist>
<country>UK</country>
<company>CBS Records</company>
<price>9.90</price>
<year>1988</year>
</cd>
</catalog>
</SecondXML>

我想使用 XSLT 转换我的第一个 XML。第一个 xml 的 cd 节点应该替换为第二个 xml 的 cd 节点。

XSLT 转换生成的 XML:

<FirstXML>
<catalog>
<cd>
<title>Hide your heart</title>
<artist>Bonnie Tyler</artist>
<country>UK</country>
<company>CBS Records</company>
<price>9.90</price>
<year>1988</year>
</cd>
</catalog>
</FirstXML>

请为此使用 XSLT 帮助我。我认为我们需要将第二个 XML 作为参数传递给 XSLT,我正在尝试这样做。我对 XSLT 很陌生,所以可能没有正确编码。关于我们如何做到这一点的任何意见都会有所帮助。提前致谢。

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com