我有一个简单的XML文件,我需要更新一个属性值(应该足够简单)。尽管复制了其他可行的示例,但我收到错误"在包含元素"的子节点之后,无法创建属性节点(LastUpdateDate)。任何人都可以发现我做错了什么或建议替代方法吗?
我的XML是:
<Root>
<Datasource Name="SCV">
<Datafeed FeedMask="yyyyMMdd_Individual" LastUpdateDate="20140401"/>
<Datafeed FeedMask="yyyyMMdd_MarketingPreferences" LastUpdateDate="20140401"/>
</Datasource>
</Root>
我的XSL是:
<xsl:transform xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
<xsl:template match="@* | node()">
<xsl:copy>
<xsl:apply-templates select="@* | node()"/>
</xsl:copy>
</xsl:template>
<xsl:template match="/Root/Datasource[@Name='SCV']/Datafeed[@FeedMask='yyyyMMdd_Individual']">
<xsl:attribute name="LastUpdateDate"><xsl:value-of select="20140402"/> </xsl:attribute>
</xsl:template>
</xsl:transform>
感谢您的帮助,
史蒂夫
答案 0 :(得分:3)
您需要先复制元素,然后才能向其添加属性:
<xsl:template match="/Root/Datasource[@Name='SCV']/Datafeed[@FeedMask='yyyyMMdd_Individual']">
<xsl:copy>
<xsl:attribute name="LastUpdateDate">
<xsl:value-of select="20140402"/>
</xsl:attribute>
</xsl:copy>
</xsl:template>
请注意,如果该属性已存在,并且您只想修改它,则可以让模板直接与该属性匹配:
<xsl:template match="/Root/Datasource[@Name='SCV']/Datafeed[@FeedMask='yyyyMMdd_Individual']/@LastUpdateDate">
<xsl:attribute name="LastUpdateDate">
<xsl:value-of select="20140402"/>
</xsl:attribute>
</xsl:template>