0
で既存の属性を尊重属性!の変換のXML要素は、私は、次のXMLを持っているXSLT
これまでのところ、私はこのXSLTを作成しました:
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output indent="yes"/>
<xsl:template match="cars">
<cars>
<xsl:apply-templates/>
</cars>
</xsl:template>
<xsl:template match="car">
<car>
<xsl:for-each select="*">
<xsl:attribute name="{name()}">
<xsl:value-of select="text()"/>
</xsl:attribute>
</xsl:for-each>
</car>
</xsl:template>
</xsl:stylesheet>
これは、その結果:
<cars>
<car brand="Volkswagen" make="Golf" wheels="4" extras=""/>
</cars>
問題:車上
- 属性 "フィルタ" がなくなっています。
- ノード "extras"の属性はなくなりましたが、ノード "car"内にある必要があります。
- "extras"という属性は必要ありません。
期待される結果:最初の問題については
<cars filter="yes">
<car brand="Volkswagen" make="Golf" wheels="4" hifi="yes" ac="no"/>
</cars>