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="${k.key }">${k.value}</option>
</c:forEach>
这样分别获取键和值。
时间: 2024-10-12 19:43:10