JSTL - XML <x: choose>, <x: when>, <x: else> Tag
Il <x:choose>tag funziona come un'istruzione switch Java. Con questo, puoi scegliere tra una serie di alternative. Dove l'istruzione switch ha le istruzioni case, il file<x:choose> il tag ha l'estensione <x:when>tag. In modo simile, un'istruzione switch ha la clausola default per specificare un'azione predefinita e il<x:choose> il tag ha l'estensione <x:otherwise> tag come clausola predefinita.
Attributo
Il <x:choose> tag non ha alcun attributo.
Il <x:when> tag ha uno degli attributi elencati di seguito.
Il <x:otherwise> tag non ha alcun attributo.
Il tag <x: when> ha i seguenti attributi:
Attributo | Descrizione | necessario | Predefinito |
---|---|---|---|
Selezionare | Condizione da valutare | sì | Nessuna |
Esempio
<%@ taglib prefix = "c" uri = "http://java.sun.com/jsp/jstl/core" %>
<%@ taglib prefix = "x" uri = "http://java.sun.com/jsp/jstl/xml" %>
<html>
<head>
<title>JSTL x:choose Tags</title>
</head>
<body>
<h3>Books Info:</h3>
<c:set var = "xmltext">
<books>
<book>
<name>Padam History</name>
<author>ZARA</author>
<price>100</price>
</book>
<book>
<name>Great Mistry</name>
<author>NUHA</author>
<price>2000</price>
</book>
</books>
</c:set>
<x:parse xml = "${xmltext}" var = "output"/>
<x:choose>
<x:when select = "$output//book/author = 'ZARA'">
Book is written by ZARA
</x:when>
<x:when select = "$output//book/author = 'NUHA'">
Book is written by NUHA
</x:when>
<x:otherwise>
Unknown author.
</x:otherwise>
</x:choose>
</body>
</html>
Verrà visualizzato il seguente risultato:
Books Info:
Book is written by ZARA