使用xslt复制包含特定子元素的父元素



我有一个简单的xml:

<custom-objects>
    <custom-object id="1">
        <object-attribute attribute-id="address1">Warndtstr. 33</object-attribute>
        <object-attribute attribute-id="branch">01</object-attribute>
        <object-attribute attribute-id="catalogid">7991</object-attribute>
        <object-attribute attribute-id="exportdate">2015-09-19</object-attribute>
    </custom-object>
    <custom-object>
...
    </custom-object>
</custom-objects>

我试图简单地复制每个包含子元素的<custom-object>元素,其中@attribute-id"exportdate",并且具有特定的文本值。

这是我的xslt:

<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
    <xsl:output omit-xml-declaration="yes" indent="yes"/>
    <xsl:strip-space elements="*"/>
    <xsl:template match="node()|@*">
        <xsl:copy>
            <xsl:apply-templates select="node()|@*"/>
        </xsl:copy>
    </xsl:template>
    <xsl:template match="custom-object[object-attribute[@attribute-id='exportdate']='2015-09-19']"/>
</xsl:stylesheet>

当用作xpath时,匹配正在工作。xslt返回一个空结果。

  • 为什么它在这种情况下不起作用
  • 我的错误在哪里

"我试图简单地复制每个包含子元素的元素,其中@attribute id是"exportdate"并具有特定的文本值。"

应该用于删除元素的空模板。因此,目前,XSL应该删除"exportdate"等于"2015-09-19"的custom-object,并复制其他元素。如果您想要相反的结果,请尝试使用具有相反含义的XPath,例如:

<xsl:template 
    match="custom-object[not(object-attribute[@attribute-id='exportdate']='2015-09-19')]"/>

最新更新