XSL transformation attributes to elements

后端 未结 1 1859
太阳男子
太阳男子 2021-01-27 09:21

I would like to convert xml attributes of input xml to elements of output xml. Example



        
相关标签:
1条回答
  • 2021-01-27 09:57

    Try it this way:

    <xsl:template match="Price">
        <xsl:copy>
            <xsl:for-each select="@*">
                <xsl:element name="{name()}">
                    <xsl:value-of select="."/>
                </xsl:element>
            </xsl:for-each>
        </xsl:copy>
    </xsl:template>
    
    0 讨论(0)
提交回复
热议问题