for循環list、取得索引值、定義變量、取出map中的value、if...else循環、日期

<%@taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>
<%@ taglib uri="http://java.sun.com/jsp/jstl/functions" prefix="fn"%>
<%@ taglib uri="http://java.sun.com/jsp/jstl/fmt" prefix="fmt" %>java

一、for循環list、取得索引值、定義變量、取出map中的value、if...else循環、日期格式化、空值判斷、字符串函數jsp

<c:forEach items="${tableNameVoList}" var="tableNameVar" varStatus="i" >
  <c:set var="tableNameTemp" value="${ tableNameVar.tableName }" scope="request" />
    
  <!-- 判斷是否展現表 -->
  <c:choose>
    <c:when test="${tableViewFlag[tableNameTemp] == true}">
     <li><a href="#page_${i.index}" id="${i.index}">${tableNameVar.tableNameZh}</a></li>
    </c:when>
    <c:otherwise>
     ${columnValue}****
    </c:otherwise>
  </c:choose>
</c:forEach>函數


<fmt:formatDate value="${columnValue}" pattern="yyyy-MM-dd"/></td>orm

<fmt:formatDate value="${columnValue}" pattern="yyyy-MM-dd HH:dd:ss"/></td>索引

<c:when test="${!empty columnValue && fn:length(columnValue) > 4}"> 
 <c:set var="strTemp" value="${fn:substring(columnValue, 0, fn:length(columnValue)-4)}" />
 ${strTemp}****
</c:when>字符串

相關文章
相關標籤/搜索