如何在使用XSLT重命名标记时保留XML标记值

时间:2017-08-22 16:15:33

标签: xml xslt

我想知道在使用XSLT重命名标记时如何保留XML标记值。下面是我的xml,xslt和所需的结果。我不知道如何做到这一点所以我尝试使用变量,并在XLST中选择何时以及以其他方式标记。

XML:

<?xml version="1.0" encoding="UTF-8"?>
<x>
    <y>
        <z value="john" designation="manager">
            <z value="mike" designation="associate"></z>
            <z value="dave" designation="associate"></z>
        </z>
    </y>
</x>

XSLT:

<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="*"/>

<xsl:variable name="var"> 
name="manager value=\"sam\""
</xsl:variable>

<xsl:template match="x">
    <employees>
        <xsl:apply-templates />
    </employees>
</xsl:template>

<xsl:template match="y">
    <employee>
        <xsl:apply-templates />
    </employee>
</xsl:template>

<xsl:template match="z">
<xsl:choose>
  <xsl:when test="sam">
    <xsl:element name="{$var}">
    </xsl:element>
  </xsl:when>
   <xsl:otherwise>
    <xsl:element name="{@designation}">
       <xsl:value-of select="@value"/>
        <xsl:apply-templates />
    </xsl:element>
     </xsl:otherwise>
     </xsl:choose>
</xsl:template>

</xsl:stylesheet>

所需的输出:

<?xml version="1.0" encoding="UTF-8"?>
<employees>
    <employee>
        <manager value="john">
            <associate>mike</associate>
            <associate>dave</associate>
        </manager>
    </employee>
</employees>

1 个答案:

答案 0 :(得分:0)

这应该有效:

<?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:template match="x">
        <employees>
            <xsl:apply-templates/>
        </employees>
    </xsl:template>

    <xsl:template match="y">
        <employee>
            <xsl:apply-templates/>
        </employee>
    </xsl:template>

    <xsl:template match="*[contains(@designation, 'manager')]">
        <manager>
            <xsl:attribute name="value"><xsl:value-of select="@value"/></xsl:attribute>
            <xsl:apply-templates/>
        </manager>
    </xsl:template>

    <xsl:template match="*[contains(@designation, 'associate')]">
        <associate>
            <xsl:value-of select="@value"/>
        </associate>
    </xsl:template>

</xsl:stylesheet>