首页 > 代码库 > 【JSP EL】EL表达式 获取list长度/不用循环,EL在List中直接获取第一项的内容/EL获取Map的键,Map的值

【JSP EL】EL表达式 获取list长度/不用循环,EL在List中直接获取第一项的内容/EL获取Map的键,Map的值

1.EL表达式 获取list长度

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

 

<c:if test="${fn:length(list名字)>1}">

  中间该干嘛干嘛

</c:if>

 

2.不用循环,EL在List中直接获取第一项的内容

${list[0].属性}

 

3.EL获取Map的键,Map的值

<c:forEach items="${map名字}" var="k">
  <option value="http://www.mamicode.com/${k.key }">${k.value}</option>
</c:forEach>

 

这样分别获取键和值。

 

【JSP EL】EL表达式 获取list长度/不用循环,EL在List中直接获取第一项的内容/EL获取Map的键,Map的值