Latest web development tutorials

<: De otro modo x> etiqueta <X:: choose>, <x cuando>,

JSP Standard Tag Library JSP Standard Tag Library

<X: seleccione> y la sentencia switch de Java tiene la misma funcionalidad. sentencia switch tiene instrucciones case, y <x: seleccione> tiene un <x: cuando> etiqueta. sentencia switch tiene sentencia default, y <x: seleccione> tiene una etiqueta <x otro modo>.

sintaxis

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

propiedad

  • <X: choose> no tiene propiedades.
  • <X: cuando> atributo en la tabla de abajo.
  • <X: de otro modo> no tiene propiedades.

<X: cuando> atributos de etiqueta:

propiedad descripción Si es necesario defecto
seleccionar condición es no

Los ejemplos de demostración

<%@ 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>

Los resultados son como sigue:

BOOKS INFO:
Book is written by ZARA

JSP Standard Tag Library JSP Standard Tag Library