将标签附加到servlets属性:
req.setAttribute("show", "itemList");
如何根据servlets的属性显示表头
<table>
<c:if test="${show="itemList"}">
<thead>
show info1
</thead>
</c:if>
<c:if test="${show="historyItemList"}">
<thead>
show info2
</thead>
</c:if>
<tbody>
<c:forEach items="${userItemsList}" var="item">
<tr>
<td><c:out value="${item.id}" /></td>
<td><c:out value="${item.title}" /></td>
<td><c:out value="${item.link}" /></td>
</tr>
</c:forEach>
</tbody>
</table>
我有:
org.apache.jasper.JasperException:/userItems.jsp(line:51,column:36)等于符号预期
什么是正确的语法?