使用自定义条件属性的元素忽略少数元素

时间:2017-06-28 15:48:07

标签: java xml xslt

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

像planet_name这样的例子是元素,它包含父元素(planet),因此需要将其作为属性转换为原样,并且还要排除少量元素,如parent_element和planet_number。

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

示例XML示例:

<world>
            <planet>
               <planet_name>solaris</planet_name>
               <planet_number>23</planet_number>
               <test>value1</test>
               <parent>
                   <test>test1</test>
                   <parent_element>test</parent_element>
               </parent>
             </planet>
</world>

预期产出:

<world>
            <planet planet_name="solaris">
                <planet_number>23</plante_number>
                 <parent>
                   <test>test1</test>
                   <parent_element>test</parent_element>
               </parent>
               <test>value1</test>
             </planet>
</world>

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: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>

1 个答案:

答案 0 :(得分:0)

更改

<xsl:apply-templates select="*[starts-with(name(), name(current()))]" mode="attr"/>

<xsl:apply-templates select="*[starts-with(name(), name(current())) and not(name() = 'planet_number' or name() = 'parent_element')]" mode="attr"/>

和另一个apply-templates

<xsl:apply-templates select="node()[not(starts-with(name(), name(current()))) or name() ='planet_number' or name() = 'parent_element']"/>

应该:http://xsltransform.net/6pS1zCW