JSP JSTL <x:choose>標籤:完成條件判斷

2020-07-16 10:04:59
<x:choose> 標籤與其子標籤 <x:when> 和 <x:otherwise> 用於完成條件判斷。

語法:

<x:choose>
  body content(<x:when>and<x:otherwise>subtags)
</x:choose>

範例

應用 <x:choose> 標籤顯示網店中“C語言中文網”所處的成長階段,關鍵程式碼如下:
<%@taglib prefix="x" uri="http://java.sun.com/jsp/jstl/xml"%>
  <%@taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>
    <c:import url="shopInfo.xml" var="xmlFile" charEncoding="gbk"/>
    <x:parse var="shopInfo" doc="${xmlFile}"></x:parse>
    <x:choose>
      <x:when select="$shopInfo/shops/shop[name='C語言中文網'][sellAmount/@value>
                      500000]">商業能手</x:when>
      <x:when select="$shopInfo/shops/shop[name='C語言中文網'][sellAmount/@value
                      <500000][sellAmount/@value>100000]">身手小試</x:when>
      <x:otherwise>初學下海</x:otherwise>
    </x:choose>