我有以下XML:
<?xml version="1.0" encoding="UTF-8"?>
<Orders>
<Order Weight="1.00">
<Items>
<Item ItemLength="5.00" ItemQty="1">
<ItemCharge Description="Chair" Amount="5.50"></ItemCharge>
</Item>
</Items>
</Order>
<Order Weight="2.50">
<Items>
<Item Length="5.00" ItemQty="1">
<ItemCharge Description="Chair" Amount="8.50"></ItemCharge>
</Item>
</Items>
</Order>
</Orders>
我需要将"Order"元素中的属性和值(例如Weight="1.00")移动到"Item"元素中。"Order"元素的数量和"Weight"属性中的值将不时变化。期望的结果应该如下所示:
<?xml version="1.0" encoding="UTF-8"?>
<Orders>
<Order>
<Items>
<Item ItemLength="5.00" ItemQty="1" Weight="1.00">
<ItemCharge Description="Chair" Amount="5.50"></ItemCharge>
</Item>
</Items>
</Order>
<Order>
<Items>
<Item Length="5.00" ItemQty="1" Weight="2.50">
<ItemCharge Description="Chair" Amount="8.50"></ItemCharge>
</Item>
</Items>
</Order>
</Orders>
我现在有这样的XSLT:
<?xml version="1.0" encoding="utf-8"?>
<xsl:stylesheet version="1.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="@*[not(name() = 'Weight')] | node()">
<xsl:copy>
<xsl:apply-templates select="@* | node()"/>
</xsl:copy>
</xsl:template>
</xsl:stylesheet>
我非常感谢你的帮助! 您需要将此视为两个单独的更改,而不是单个的"move"
1)移除Order
元素的Weight
属性。或者,不要将Weight
属性复制到输出
<xsl:template match="@Weight" />
2)将Item
元素复制到输出
Weight
属性<xsl:template match="Item">
<Item Weight="{../../@Weight}">
<xsl:apply-templates select="@* | node()"/>
</Item>
</xsl:template>
注意在创建新属性时使用了"属性值模板"。
还应注意,应避免在此类转换中更改标识模板。上面的两个模板,因为它们使用特定的名称,所以获得比标识模板更高的优先级。
试试这个XSLT
<xsl:stylesheet version="1.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="@Weight" />
<xsl:template match="Item">
<Item Weight="{../../@Weight}">
<xsl:apply-templates select="@* | node()"/>
</Item>
</xsl:template>
</xsl:stylesheet>