Inicio /
Elemento apply-templates – Etiqueta <xsl:apply-templates>

Elemento <xsl:apply-templates>

La etiqueta <xsl:apply-templates> es usada para aplicar una plantilla (template) sobre el elemento actual o sobre alguno de sus nodos hijos.

Una vez que se encuentra la etiqueta <xsl:apply-templates> se buscará alguna de las templates definidas en el documento XSL que coincida con la expresión XPath contenida en su atributo match.


Si añadimos un atributo select a la etiqueta <xsl:apply-templates> esta procesará solo el nodo o nodos hijos que coincidan con el valor del atributo. También podemos usar el atributo select para especificar el orden en el que los nodos hijos serán procesados.

Veamos un ejemplo del uso de esta etiqueta.

<?xml version="1.0" encoding="ISO-8859-1"?>
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">

<xsl:template match="/">
<html>
<body>
<h2>Mi coleccion de CDs </h2>
<xsl:apply-templates/>
</body>
</html>
</xsl:template>

<xsl:template match="cd">
<p>
<xsl:apply-templates select="titulo"/>
<xsl:apply-templates select="artista"/>

</p>
</xsl:template>

<xsl:template match="titulo">
Titulo: <span style="color:#ff0000">
<xsl:value-of select="."/></span>
<br />
</xsl:template>

<xsl:template match="artista">
Artista: <span style="color:#00ff00">
<xsl:value-of select="."/></span>
<br/>
</xsl:template>

</xsl:stylesheet>

Nota: El valor del atributo select es una expresión XPath.


Dado el siguiente documento XML y la plantilla anterior de transformación:

<?xml version="1.0" encoding="ISO-8859-1"?>
<catalogo>
<cd>
<titulo>Empire Burlesque</titulo>
<artista>Bob Dylan</artista>
<pais>USA</pais>
<discografica>Columbia</discografica>
<precio>10.90</precio>
<anio>1985</anio>
</cd>

<cd>
<titulo>The dock of the bay</titulo>
<artista>Otis Redding</artista>
<pais>USA</pais>
<discografica>Atlantic</discografica>
<precio>7.90</precio>
<anio>1987</anio>
</cd>

<cd>
<titulo>Picture book</titulo>
<artista>Simply Red</artista>
<pais>EU</pais>
<discografica>Elektra</discografica>
<precio>7.20</precio>
<anio>1985</anio>
</cd>

<cd>
<titulo>Red</titulo>
<artista>The Communards</artista>
<pais>UK</pais>
<discografica>London</discografica>
<precio>7.80</precio>
<anio>1987</anio>
</cd>

<cd>
<titulo>Unchain my heart</titulo>
<artista>Joe Cocker</artista>
<pais>USA</pais>
<discografica>EMI</discografica>
<precio>8.20</precio>
<anio>1987</anio>
</cd>
</catalogo>

El resultado sería el siguiente documento HTML:

<html><body><h2>Mi coleccion de CDs </h2><p>
Titulo: <span style="color:#ff0000">Empire Burlesque</span><br>
Artista: <span style="color:#00ff00">Bob Dylan</span><br></p><p>
Titulo: <span style="color:#ff0000">The dock of the bay</span><br>
Artista: <span style="color:#00ff00">Otis Redding</span><br></p><p>
Titulo: <span style="color:#ff0000">Picture book</span><br>
Artista: <span style="color:#00ff00">Simply Red</span><br></p><p>
Titulo: <span style="color:#ff0000">Red</span><br>
Artista: <span style="color:#00ff00">The Communards</span><br></p><p>
Titulo: <span style="color:#ff0000">Unchain my heart</span><br>
Artista: <span style="color:#00ff00">Joe Cocker</span><br></p> </body></html>


El resultado de la transformación daría la siguiente salida en el navegador:

Mi coleccion de CDs

Titulo: Empire Burlesque
Artista: Bob Dylan

Titulo: The dock of the bay
Artista: Otis Redding

Titulo: Picture book
Artista: Simply Red

Titulo: Red
Artista: The Communards

Titulo: Unchain my heart
Artista: Joe Cocker


Daniel P. @ 14:54 | comentarios (1) | Links Permanentes



<< November 2024 >>
Sun Mon Tue Wed Thu Fri Sat
  1 2
3 4 5 6 7 8 9
10 11 12 13 14 15 16
17 18 19 20 21 22 23
24 25 26 27 28 29 30
 

archivos

November - 2013
October - 2013
July - 2013
June - 2013
May - 2013
April - 2013
March - 2013
February - 2013
November - 2010
October - 2010
September - 2010
August - 2010
June - 2010
November - 2009
October - 2009
September - 2009
March - 2009
February - 2009
January - 2009
September - 2008
May - 2008
April - 2008
November - 2007
October - 2007
May - 2007
April - 2007
March - 2007
February - 2007
January - 2007
December - 2006
September - 2006
August - 2006
June - 2006
May - 2006
April - 2006
February - 2006
January - 2006
December - 2005
November - 2005

powered by SimpleBlog 2.0

rss feed




Ir a Blog de Recetas de Cocina