Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
例如
<c:if test="${post}"> <h3>${post.title}</h3> </c:if>
使用空关键字
<c:if test="${not empty post}"> <h3>${post.title}</h3> </c:if>
您也可以使用“!” 而不是'不':
<c:if test="${!empty post}"> <h3>${post.title}</h3> </c:if>