Il <xsl:for-each> elemento ti permette di fare loop in XSLT.
Il <xsl:for-each> Element
L'XSL <xsl:for-each> elemento può essere usato per selezionare ogni elemento XML di un set di nodi specificato:
Esempio
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:template match="/">
<html>
<body>
<h2>My CD Collection</h2>
<table border="1">
<tr bgcolor="#9acd32">
<th>Title</th>
<th>Artist</th>
</tr>
<xsl:for-each select="catalog/cd">
<tr>
<td><xsl:value-of select="title"/></td>
<td><xsl:value-of select="artist"/></td>
</tr>
</xsl:for-each>
</table>
</body>
</html>
</xsl:template>
</xsl:stylesheet>
Prova tu stesso " Note: Il valore select attributo è un'espressione XPath. Un'espressione XPath funziona come la navigazione di un file system; dove una barra (/) seleziona sottodirectory.
Filtrare l'output
Possiamo anche filtrare l'output del file XML con l'aggiunta di un criterio al select attributo nel <xsl:for-each> elemento.
<xsl:for-each select="catalog/cd[artist='Bob Dylan']">
operatori di filtro legali sono:
- = (Uguale)
- ! = (not equal)
- & Lt; meno di
- & Gt; più grande di
Date un'occhiata al foglio di stile XSL rettificato:
Esempio
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:template match="/">
<html>
<body>
<h2>My CD Collection</h2>
<table border="1">
<tr bgcolor="#9acd32">
<th>Title</th>
<th>Artist</th>
</tr>
<xsl:for-each select="catalog/cd[artist='Bob Dylan']">
<tr>
<td><xsl:value-of select="title"/></td>
<td><xsl:value-of select="artist"/></td>
</tr>
</xsl:for-each>
</table>
</body>
</html>
</xsl:template>
</xsl:stylesheet>
Prova tu stesso "