美好的一天....我正在尝试使用更新/新元素文本和/或属性值复制节点。
我的输入 XML 文件:
<?xml version="1.0"?>
<products author="Jesper">
<product id="p1">
<name>Delta</name>
<price>800</price>
<stock>4</stock>
<country>Denmark</country>
</product>
</products>
所需的 XML 输出:
<?xml version="1.0" encoding="utf-8"?>
<products author="Jesper">
<product id="p1">
<name>Delta</name>
<price>800</price>
<stock>4</stock>
<country>Denmark</country>
</product>
<product id="NEW_p1">
<name>NEW_Delta</name>
<price>NEW_800</price>
<stock>NEW_4</stock>
<country>NEW_Denmark</country>
</product>
</products>
一段时间后,我目前拥有的 XSLT 如下:
<?xml version="1.0" encoding="utf-8"?>
<xsl:stylesheet version="2.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:msxsl="urn:schemas-microsoft-com:xslt"
exclude-result-prefixes="msxsl">
<xsl:output method="xml" indent="yes"/>
<xsl:template match="@*|node()">
<xsl:copy>
<xsl:apply-templates select="@*|node()"/>
</xsl:copy>
</xsl:template>
<xsl:template match ="product">
<xsl:copy>
<xsl:apply-templates select="@*|node()"/>
</xsl:copy>
<product>
<xsl:attribute name ="id">
<xsl:value-of select ="concat('NEW_',@id"/>
</xsl:attribute>
<xsl:copy>
<xsl:apply-templates select="node()"/>
</xsl:copy>
</product>
</xsl:template>
但是,使用上述转换,我得到以下 XML 输出:
<?xml version="1.0" encoding="utf-8"?>
<products author="Jesper">
<product id="p1">
<name>Delta</name>
<price>800</price>
<stock>4</stock>
<country>Denmark</country>
</product>
<product id="NEW_p1"><product>
<name>Delta</name>
<price>800</price>
<stock>4</stock>
<country>Denmark</country>
</product></product>
</products>
如您所见,在我声明了一个具有新@id 值的新产品元素时,添加了产品元素。由于我用来处理子节点,我相信这会再次处理产品元素。
此外,我需要帮助来更新子节点的值(在每个值前面加上“NEW_”)。在这个网站上搜索大量问题,我相信我需要一个这样的模板:
<xsl:template match="*">
<xsl:element name ="{local-name()}">
<!--for all attributes-->
<xsl:copy-of select ="@*"/>
<xsl:value-of select = "."/>
</xsl:element>
</xsl:template>
提前感谢您对我的问题提出任何建议/想法。
更新感谢@Mathias 对我最初问题的回答。所提供的答案又带来了一个涉及到 XML 结构更深层次的递归的问题。
输入 XML 文件:
<products author="Jesper">
<product id="p1">
<name>Delta
<innerName>MiddleDelta
<baseName>FinalDelta</baseName>
</innerName>
</name>
<price>800</price>
<stock>4</stock>
<country>Denmark
<city>Copenhagen</city>
</country>
</product>
</products>
更新的愿望输出文件是这样的:
<?xml version="1.0" encoding="utf-8"?>
<products author="Jesper">
<product id="p1">
<name>Delta
<innerName>MiddleDelta
<baseName>FinalDelta</baseName>
</innerName>
</name>
<price>800</price>
<stock>4</stock>
<country>Denmark
<city>Copenhagen</city>
</country>
</product>
<product id="NEW_p1">
<name>NEW_Delta
<innerName>NEW_MiddleDelta
<baseName>NEW_FinalDelta</baseName>
</innerName>
</name>
<price>NEW_800</price>
<stock>NEW_4</stock>
<country>NEW_Denmark
<city>NEW_Copenhagen</city>
</country>
</product>
</products>
我只能猜测使用模板会起作用,因为每个节点都有不同级别的子节点。提前感谢您对此的想法/建议。