57

例如

<c:if test="${post}">
    <h3>${post.title}</h3>  
</c:if>
4

2 回答 2

107

使用空关键字

<c:if test="${not empty post}">
   <h3>${post.title}</h3>   
</c:if>
于 2009-05-15T09:18:22.420 回答
12

您也可以使用“!” 而不是'不':

<c:if test="${!empty post}">
    <h3>${post.title}</h3>
</c:if>
于 2013-08-10T02:36:36.600 回答