Latest web development tutorials

<X: choisissez>, <x: quand>, <x: autrement> tag

JSP standard Tag Library JSP standard Tag Library

<X: choisissez> et l'instruction switch Java a la même fonctionnalité. instruction switch a des déclarations de cas, et <x: choisissez> tag a un <x: quand> tag. instruction switch a relevé de défaut, et <x: choisissez> tag a un <x: autrement> tag.

syntaxe

<x:choose>
 <x:when select="<string>">
     ...
 </x:when>
 <x:when select="<string>">
     ...
 </x:when>
     ...
     ...
 <x:otherwise>
     ...
 </x:otherwise>
</x:choose>

propriété

  • <X: choisissez> n'a pas de propriétés.
  • <X: quand> attribut dans le tableau ci-dessous.
  • <X: autrement> n'a pas de propriétés.

<X: quand> Attributs des balises:

propriété description le cas échéant Par défaut
sélectionner condition il est aucun

Exemples Démo

<%@ page language="java" contentType="text/html; charset=UTF-8"
    pageEncoding="UTF-8"%>
<%@ 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 标签</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>

Les résultats sont les suivants:

BOOKS INFO:
Book is written by ZARA

JSP standard Tag Library JSP standard Tag Library