<c:if test="${not empty userList)}">
<table cellpadding="5">
<tr class="even">
<th>Name</th>
<th>Gender</th>
<th>Country</th>
<th>About You</th>
</tr>
<c:forEach items="${userList}" var="user" varStatus="status">
<tr class="<c:if test="${status.count % 2 == 0}">even</c:if>">
<td>${user.name}</td>
<td>${user.gender}</td>
<td>${user.country}</td>
<td>${user.aboutYou}</td>
</tr>
</c:forEach>
</table>
</c:if>
當我刪除<c:if test="${not empty userList)}"></c:if>
它會引發錯誤。 這個條件檢查什麼?我的數據庫表有用戶列表,但是這整個代碼不會顯示在我的HTML本身中。這種情況有什麼作用?
爲什麼這個標記的Java? – 2010-12-22 08:29:16