我有一个特定的要求,我需要使用前一个兄弟节点值更改当前元素的属性值。
当前XML
<com:row>
<com:new>
<com:Component ExcludeInd="false">
<com:CatTypeCode>35</com:CatTypeCode>
<com:SubCatTypeCode>055508</com:SubCatTypeCode>
<com:ComCode>1000</com:ComCode>
<com:VComponentCode>nbr</com:VComponentCode>
<com:Val Value="sometext">250</com:Val>
</com:Component>
</com:new>
</com:row>
XSLT
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:com="http://www.w3.org/2001/XMLSchema-instance">
<xsl:output method="xml" indent="yes"/>
<xsl:template match="../com:Component/com:Val">
<xsl:element name="com:Val" namespace="http://www.w3.org/2001/XMLSchema-instance">
<xsl:variable name="myVar" select="preceding-sibling::com:VComponentCode"/>
<xsl:attribute name="ValueType"><xsl:value-of select="$myVar"/></xsl:attribute>
<xsl:apply-templates select="@*|node()"/>
</xsl:element>
</xsl:template>
</xsl:stylesheet>
预期的XML
<com:row>
<com:new>
<com:Component ExcludeInd="false">
<com:CatTypeCode>35</com:CatTypeCode>
<com:SubCatTypeCode>055508</com:SubCatTypeCode>
<com:ComCode>1000</com:ComCode>
<com:VComponentCode>nbr</com:VComponentCode>
<com:Val Value="nbr">250</com:Val>
</com:Component>
</com:new>
</com:row>
我可以在硬编码值时更改属性中的值,但不能作为变量。
答案 0 :(得分:1)
假设您有一个格式正确的 XML输入,您可以尝试以下XSL转换:
<?xml version="1.0" encoding="utf-8"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:com="http://www.w3.org/2001/XMLSchema-instance">
<xsl:output method="xml" indent="yes"/>
<xsl:template match="@* | node()">
<xsl:copy>
<xsl:apply-templates select="@* | node()"/>
</xsl:copy>
</xsl:template>
<xsl:template match="com:Val/@Value">
<xsl:attribute name="Value">
<xsl:value-of select="parent::com:Val/preceding-sibling::com:VComponentCode"/>
</xsl:attribute>
</xsl:template>
</xsl:stylesheet>
简要说明:
<xsl:template match="@* | node()">
:身份模板。此模板将匹配的元素和属性复制为输出XML,因为它在源XML中。
<xsl:template match="com:Val/@Value">
:覆盖Value
元素的com:Val
属性的标识模板。不是复制属性以输出此模板,而是创建新的Value
属性,其值取自前一个兄弟com:VComponentCode
元素。