模板未应用于XSLT

时间:2015-01-28 11:55:54

标签: xslt-1.0

我正在使用xslt将xml转换为xml。

<root>
 <elem>
  <confs>
   <conf1>1</conf1>
   <conf2>2</conf2>
  </confs>
 </elem>
</root>

我的XSL

<xsl:template match="elem">
 <xsl:copy>
  <xsl:attribute name="className">confs</xsl:attribute>
  <xsl:apply-templates/>
 </xsl:copy>
</xsl:template>

<xsl:template match="confs">
 <confs>
  <xsl:for-each select="*">
   <conf>
    <value>
     <xsl:value-of select="node()"></xsl:value-of>
    </value>
   </conf>
 </confs>
</xsl:template>

期望的输出:

<root>
 <elem className="confs>
  <confs>
   <conf>
    <value>1</value>
   </conf>
   <conf>
    <value>1</value>
   </conf>
  </confs>
 </elem>
 </root>

当单独运行每个模板时,它们是好的。但我运行的两个confs模板根本没有受到影响。

任何帮助?

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

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

<xsl:template match="elem">
    <elem className="confs">
        <xsl:apply-templates/>
    </elem>
</xsl:template>

<xsl:template match="confs/*">
    <conf>
        <value>
            <xsl:value-of select="."/>
        </value>
   </conf>
</xsl:template>

</xsl:stylesheet>