我正在尝试使用JSTL执行if
语句。
我的代码如下(变量值是包含用户定义对象的ArrayList,类型是该对象的私有属性,使用公共getter / setter方法):
<c:forEach items="${list}" var="values">
<c:if test="${values.type}=='object'">
<!-- code here -->
</c:if>
</c:forEeach>
test
属性中部件的正确语法是什么。文档对该部分http://download.oracle.com/javaee/5/jstl/1.1/docs/tlddocs/index.html
感谢。
答案 0 :(得分:41)
需要在EL ${ ... }
内完全评估比较,而不是在外部。
<c:if test="${values.type eq 'object'}">
至于文档,那些${}
事物不是JSTL,而是EL(表达语言),它本身就是一个完整的主题。 JSTL(与其他所有JSP taglib一样)只是使用它。您可以找到更多EL示例here。
<c:if test="#{bean.booleanValue}" />
<c:if test="#{bean.intValue gt 10}" />
<c:if test="#{bean.objectValue eq null}" />
<c:if test="#{bean.stringValue ne 'someValue'}" />
<c:if test="#{not empty bean.collectionValue}" />
<c:if test="#{not bean.booleanValue and bean.intValue ne 0}" />
<c:if test="#{bean.enumValue eq 'ONE' or bean.enumValue eq 'TWO'}" />
顺便说一句,与具体问题无关,如果我猜你的意图正确,你也可以拨打Object#getClass()
然后Class#getSimpleName()
而不是添加自定义的getter。
<c:forEach items="${list}" var="value">
<c:if test="${value['class'].simpleName eq 'Object'}">
<!-- code here -->
</c:if>
</c:forEeach>