XSLT <wiadomość>
Element tagu <message> pomaga debugować przetwarzanie XSLT. Jest podobny do alertów javascript. Znacznik <xsl:> buforuje komunikat do procesora XSLT, który przerywa przetwarzanie i wysyła komunikat do aplikacji wywołującej w celu wyświetlenia komunikatu o błędzie.
Deklaracja
Poniżej znajduje się deklaracja składni <xsl:message> element.
<xsl:message
terminate = "yes" | "no" >
</xsl:message>
Atrybuty
Sr.No | Nazwa i opis |
---|---|
1 | terminate Określa, czy transformacja powinna kończyć się po wykonaniu tej instrukcji, czy nie. Domyślnie jest to „tak”. |
Elementy
Liczba wystąpień | Nieograniczony |
---|---|
Parent elements | xsl: atrybut, xsl: komentarz, xsl: copy, xsl: element, xsl: fallback, xsl: foreach, xsl: if, xsl: message, xsl: w przeciwnym razie, xsl: param, xsl: processinginstruction, xsl: template, xsl: zmienna, xsl: kiedy, xsl: with-param, elementy wyjściowe |
Child elements |
xsl: Apply-templates, xsl: attribute, xsl: call-template, xsl: choose, xsl: komentarz, xsl: copy, xsl: copy-of, xsl: element, xsl: for-each, xsl: if, xsl: instrukcja-przetwarzania, xsl: tekst, xsl: wartość-of, xsl: zmienna, elementy wyjściowe |
Przykład demo
Ten przykład tworzy tabelę elementu <student> z jego atrybutem rollnoi jego potomka <firstname>, <lastname>, <nickname> i <marks> przez iterację po każdym uczniu. Sprawdza, czy klucz jest obecny, a następnie drukuje szczegóły ucznia, w przeciwnym razie wyświetla komunikat o błędzie.
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></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.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">
<xsl:if test = "firstname = ''">
<xsl:message terminate = "yes">A first name field is empty.
</xsl:message>
</xsl:if>
<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>