JSTL 标签

循环标签
一,CIM要将JSP中的Java代码改成标签形式

1, 加上标签引用
<%@taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %> 

2, 加上jar包
standard.jar 和 jstl.jar

3, 使用 Record是request内的对象, 含有getErrorList方法
list中是ErrorBean对象,含有getAttributName方法
<c:forEach items="${Record.errorList}" var="m">
${m.attributeName}
</c:forEach>

二, 在JS中的使用
在JavaScript中使用的话需要用双引号,不然会报错
var searchFile = "${searchFile}";

三, 在JSP<%...%>中使用
<%...%>中是逻辑代码, JSTL是显示代码, 所以不能搭配使用。
遇到需要status转换的地方,例如1 --> commited,应该在Action 或是Service层来处理。

choose标签
<c:choose>
	<c:when test="${fn:length(SummaryCISBean.batchBeans)>0}"> 
			<c:forEach items="${SummaryCISBean.batchBeans}" var="m" varStatus="status">	
			...
			</c:forEach>
 	</c:when>
	<c:otherwise> 
   		<h2>No Data Found</h2>  
	</c:otherwise>
</c:choose>	


fn标签
由于JSTL中不能使用size方法来看其大小, 要用fn标签
<%@taglib uri="http://java.sun.com/jsp/jstl/functions"  prefix="fn"%>

<c:if test="${fn:length(SummaryCISBean.batchBeans)>0}"> 
		              		<img src="./static/images/excel.gif" title="export to excel" style="cursor:pointer;cursor:hand;" onclick="javascript:exportFile()" align="absmiddle" border="0"/>
		              	</c:if>

你可能感兴趣的:(jstl)