要使自定义逻辑无效的元素

时间:2017-06-16 18:59:46

标签: java xml xslt

在将元素转换为属性时,我正在检查父元素的名称是否存在于我们尝试转换为属性的元素中。

planet_name 之类的示例是元素,它包含父元素(planet),因此需要将其作为属性转换为原样。

我写了xslt,但它不起作用可以请任何人帮忙吗?提前谢谢。

示例XML示例:

<world>
            <planet>
               <planet_name>solaris</plante_name>
               <planet_number>23</plante_number>
               <test>value1</test>
             </planet>
</world>

预期产出:

<world>
            <planet planet_name="solaris" planet_number="23">
               <test>value1</test>
             </planet>
</world>

XSLT如下

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

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

    <!--Match elements that contain children elements that don't contain children 
        elements themselves. -->
    <xsl:template match="*[*[not(*)]]">
        <xsl:copy>
            <xsl:for-each select="*">
                <xsl:variable name="attrName" select="name()" />
                <xsl:variable name="parentName" select="name(..)" />
                <xsl:choose>
                    <xsl:when test="contains(normalize-space($parentName),normalize-space($attrName))">
                        <xsl:attribute name="{name()}">
                           <xsl:value-of select="$parentName" />
                        </xsl:attribute>
                    </xsl:when>
                    <xsl:otherwise>
                        <xsl:copy>
                            <xsl:apply-templates select="node()" />
                        </xsl:copy>
                    </xsl:otherwise>
                </xsl:choose>
            </xsl:for-each>
        </xsl:copy>
    </xsl:template>
</xsl:stylesheet>

1 个答案:

答案 0 :(得分:0)

我建议采用不同的方法:

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

<xsl:template match="*">
    <xsl:copy>
        <xsl:copy-of select="@*"/>
        <xsl:apply-templates select="*[starts-with(name(), name(current()))]" mode="attr"/>
        <xsl:apply-templates select="node()[not(starts-with(name(), name(current())))]"/>
    </xsl:copy>
</xsl:template>

<xsl:template match="*" mode="attr">
    <xsl:attribute name="{name()}">
        <xsl:value-of select="." />
    </xsl:attribute>
</xsl:template>

</xsl:stylesheet>