c标签处理map数据
<%@taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
<c:forEach var="item" items="${map}">
${item.key} > ${item.value} <br>
</c:forEach>
<br>
<c:forEach var="item" items="${map['a']}">
${item }<br>
</c:forEach>
<!-- map中值为list -->
<c:forEach var="item" items="${map}">
<c:forEach items="${item.value}" var="v">
${v }
<br>
</c:forEach>
</c:forEach>
fmt标签日期格式化
<%@taglib uri="http://java.sun.com/jsp/jstl/fmt" prefix="fmt"%>
<fmt:formatDate value="${question.time}" pattern="yyyy-MM-dd HH:mm:ss"/>
函数标签fn
<%@ taglib prefix="fn" uri="http://java.sun.com/jsp/jstl/functions"%>
${fn:length(pa)}//求长度