使用XSLT

时间:2017-03-23 19:46:20

标签: xml xslt

我需要根据其中一个节点的值修改节点的两个属性。如果@ dc =“R”和@ rt =“UM”,那么我需要将@dc更改为“NF”并删除@rt属性。以下是我试图解决的问题,但这是删除文档的所有子元素。

示例文件:

<?xml version="1.0" encoding="UTF-8"?>
<ID dc="R" rt="UM" other="attr">
    <foo>bar</foo>
</ID>

样式表:

<?xml version="1.0"?>
<xsl:stylesheet 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="*[@dc = 'R' and @rt = 'UM']">
    <xsl:copy>
        <xsl:apply-templates select="@*|node()" mode="nf"/>
    </xsl:copy>
</xsl:template>

<xsl:template match="@dc" mode="nf">
    <xsl:attribute name="dc">
        <xsl:text>NF</xsl:text>
    </xsl:attribute>
</xsl:template>

<xsl:template match="@rt" mode="nf"/>

<xsl:template match="@*|node()" mode="nf">
    <xsl:copy>
        <xsl:apply-templates select="@*|node()"/>
    </xsl:copy>
</xsl:template>

</xsl:stylesheet>

结果:

<?xml version="1.0" encoding="UTF-8"?>
<ID dc="NF" other="attr"/>

<foo>标记及其文字消失了。有没有更好的方法来解决这个问题?我错过了什么吗?

3 个答案:

答案 0 :(得分:1)

  

如果@ dc =“R”且@ rt =“UM”,那么我需要将@dc更改为“NF”并删除   @rt属性。

你能不能做到:

XSLT 1.0

<xsl:stylesheet version="1.0" 
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="xml" version="1.0" encoding="UTF-8" indent="yes"/>
<xsl:strip-space elements="*"/>

<!-- identity transform -->
<xsl:template match="@*|node()">
    <xsl:copy>
        <xsl:apply-templates select="@*|node()"/>
    </xsl:copy>
</xsl:template>

<xsl:template match="@dc[.='R' and ../@rt='UM']">
    <xsl:attribute name="dc">NF</xsl:attribute>
</xsl:template>

<xsl:template match="@rt[.='UM' and ../@dc='R']" />

</xsl:stylesheet>

或者,如果您愿意:

<xsl:stylesheet version="1.0" 
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="xml" version="1.0" encoding="UTF-8" indent="yes"/>
<xsl:strip-space elements="*"/>

<!-- identity transform -->
<xsl:template match="@*|node()">
    <xsl:copy>
        <xsl:apply-templates select="@*|node()"/>
    </xsl:copy>
</xsl:template>

<xsl:template match="*[@dc='R' and @rt='UM']">
    <xsl:copy>
        <xsl:attribute name="dc">NF</xsl:attribute>
        <xsl:apply-templates select="@*[not(name()='dc' or name()='rt')] | node()"/>
    </xsl:copy>
</xsl:template>

</xsl:stylesheet>

答案 1 :(得分:1)

也许这个XSLT可以帮到你:

<?xml version="1.0"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">

    <xsl:template match="@*|node()">                               <!-- identity template -->
        <xsl:copy>
            <xsl:apply-templates select="@*|node()" />
        </xsl:copy>
    </xsl:template>

    <xsl:template match="ID[@dc = 'R' and @rt = 'UM']">            <!-- replaces the matching ID nodes with the desired output -->
        <xsl:element name="ID">
            <!-- copies all attributes of the current ID node except 'dc' -->
            <xsl:apply-templates select="@*[local-name() != 'dc']" />
            <!-- sets the attribute to the desired value 'NF' -->                
            <xsl:attribute name="dc">NF</xsl:attribute>
            <!-- applies the rest of the templates -->
            <xsl:apply-templates  />
        </xsl:element>
    </xsl:template>

</xsl:stylesheet>

输出为:

<?xml version="1.0"?>
<ID rt="UM" other="attr" dc="NF">
    <foo>bar</foo>
</ID>

答案 2 :(得分:-2)

<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
    xmlns:xs="http://www.w3.org/2001/XMLSchema"
    exclude-result-prefixes="xs"
    version="2.0">
    <xsl:output method="xml" indent="yes"/>
    <xsl:template match="ID">
        <ID>
            <xsl:apply-templates select="@* except @rt"/>
            <xsl:if test="normalize-space(@dc)">
                <xsl:attribute name="NF" select="@dc"/>

            </xsl:if>

            <xsl:apply-templates/>

        </ID>
    </xsl:template>

<xsl:template match="node()|@*">
    <xsl:copy>
        <xsl:apply-templates select="node()|@*"/>
    </xsl:copy>
</xsl:template>
</xsl:stylesheet>