JSTL empty判断空值 4年前

前端开发
904
JSTL empty判断空值
<%  
String str1=null;  
String str2="";  
String str3="aa";  
ArrayList al1=null;  
ArrayList al2=new ArrayList();  
ArrayList al3=new ArrayList();  
al3.add("aa");  
  
request.setAttribute("str1", str1);  
request.setAttribute("str2", str2);  
request.setAttribute("str3", str3);  
request.setAttribute("al1", al1);  
request.setAttribute("al2", al2);  
request.setAttribute("al3", al3);  
%>  
  
  
 <c:if test="${empty str1 }">  
 str1  
</c:if>  
<c:if test="${empty str2 }">  
 str2  
</c:if>  
<c:if test="${empty str3 }">  
 str3  
</c:if>  
<c:if test="${empty al1 }">  
 al1  
</c:if>  
<c:if test="${empty al2 }">  
 al2  
</c:if>  
<c:if test="${empty al3 }">  
 al3  
</c:if>

 测试结果是:str1   str2  al1  al2

说明:

${empty obj}

规则: 
1 若obj 为 null 时,返回 true
2 若obj 为空 String 时,返回 true
3 若obj 为空 Array 时,返回 true
4 若obj 为空 Map 时,返回 true
5 若obj 为空 Collection 时,返回 true
6 否则,返回 false


b
boboo
真可悲,你什么都不知道,在这个世界上没有什么是不重要的!
4
发布数
1
关注者
8013
累计阅读

热门教程文档

React Native
40小节
Typescript
31小节
C#
57小节
React
18小节
Maven
5小节
广告