XSLT <modello>
<xsl: template> definisce un modo per riutilizzare i modelli al fine di generare l'output desiderato per i nodi di un particolare tipo / contesto.
Dichiarazione
Di seguito è riportata la dichiarazione della sintassi di <xsl:template> elemento.
<xsl:template
name = Qname
match = Pattern
priority = number
mode = QName >
</xsl:template>
Attributi
Suor n | Nome e descrizione |
---|---|
1 | name Nome dell'elemento su cui applicare il modello. |
2 | match Modello che indica l'elemento o gli elementi su cui applicare il modello. |
3 | priority Numero di priorità di un modello. Il modello di corrispondenza con priorità bassa non viene considerato davanti al modello ad alta priorità. |
4 | mode Consente all'elemento di essere elaborato più volte per produrre ogni volta un risultato diverso. |
Elementi
Numero di occorrenze | Illimitato |
---|---|
Parent elements |
xsl: stylesheet, xsl: transform |
Child elements |
xsl: apply-imports, xsl: apply-templates, xsl: attribute, xsl: call-template, xsl: choose, xsl: comment, xsl: copy, xsl: copy-of, xsl: element, xsl: fallback, xsl: for-each, xsl: if, xsl: message, xsl: number, xsl: param, xsl: processing-instructions, xsl: text, xsl: value-of, xsl: variable, output elements |
Esempio demo
Questa regola modello ha uno schema che identifica gli elementi <student> e produce un output in formato tabulare.
students.xml
<?xml version = "1.0"?>
<?xml-stylesheet type = "text/xsl" href = "students.xsl"?>
<class>
<student rollno = "393">
<firstname>Dinkar</firstname>
<lastname>Kad</lastname>
<nickname>Dinkar</nickname>
<marks>85</marks>
</student>
<student rollno = "493">
<firstname>Vaneet</firstname>
<lastname>Gupta</lastname>
<nickname>Vinni</nickname>
<marks>95</marks>
</student>
<student rollno = "593">
<firstname>Jasvir</firstname>
<lastname>Singh</lastname>
<nickname>Jazz</nickname>
<marks>90</marks>
</student>
</class>
students_imports.xsl
<?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>Students</h2>
<table border = "1">
<tr bgcolor = "#9acd32">
<th>Roll No</th>
<th>First Name</th>
<th>Last Name</th>
<th>Nick Name</th>
<th>Marks</th>
</tr>
<xsl:for-each select = "class/student">
<tr>
<td><xsl:value-of select = "@rollno"/></td>
<td><xsl:value-of select = "firstname"/></td>
<td><xsl:value-of select = "lastname"/></td>
<td><xsl:value-of select = "nickname"/></td>
<td><xsl:value-of select = "marks"/></td>
</tr>
</xsl:for-each>
</table>
</body>
</html>
</xsl:template>
</xsl:stylesheet>