XSLT中无用的match = text()

时间:2014-02-09 03:37:58

标签: xml xslt

当exerice要求我将文本从输入复制到输出时,我经常把这段代码写成:

<xsl:template match="text()">
        <xsl:value-of select="."/>
</xsl:template>

但我注意到它几乎总是无用的。在任何情况下,我必须使用此代码,否则它总是无用的?

例如,在这种情况下,输出是相同的,有或没有这三行代码: INPUT:

<z>
    <d>testo 0
        <rad>testo 1</rad>
    </d>
    <b>
        <p>
            <w>
                <z>testo 2</z>
            </w>
        </p>
    </b>
    <d>
        <p/>
        <y>testo 3
            <d>testo 4</d>
        </y>
        <p>testo 5
            <d>testo 6</d>
        </p>
        <p/>
    </d>
    <z/>
</z>

期望的输出:

<z>
<nuovo livelloInput="figlio radice">testo 0
<rad livelloInput="nipote radice">testo 1</rad>
</nuovo>
<nuovo livelloInput="figlio radice">
<p livelloInput="nipote radice">testo 2</p>
</nuovo>
<nuovo livelloInput="figlio radice">
<p livelloInput="nipote radice"/>
<y livelloInput="nipote radice">testo 3 testo 4</y>
<p livelloInput="nipote radice">testo 5 testo 6</p>
<p livelloInput="nipote radice"/>
</nuovo>
<nuovo livelloInput="figlio radice"/>
</z>

XSLT代码:

<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
    version="1.0">
<xsl:output method="xml"/>
    <xsl:template match="/*">
        <xsl:element name="{name()}">
            <xsl:apply-templates/>
        </xsl:element>
    </xsl:template>
    <xsl:template match="/*/*">
        <nuovo>
            <xsl:attribute name="livelloinput">figlioradice</xsl:attribute>
            <xsl:apply-templates></xsl:apply-templates>
        </nuovo>
    </xsl:template>
    <xsl:template match="/*/*/*">
        <xsl:element name="{name()}">
            <xsl:attribute name="livelloInput">nipoteradice</xsl:attribute>
            <xsl:apply-templates></xsl:apply-templates>
        </xsl:element>
    </xsl:template>
    <xsl:template match="text()">
        <xsl:value-of select="."/>
    </xsl:template>
</xsl:stylesheet>

1 个答案:

答案 0 :(得分:2)

由于built-in template rules,这是文本节点的默认行为。所以你并不一定需要这个模板。