我正在尝试检查jsp中的请求属性以显示/隐藏某些html。
request.setAttribute("submitted", "true");
JSP:
<c:if test="${submitted == 'false'}">
// some html
</c:if>
但无论我在属性中设置什么值,条件总是计算为false。 属性在条件中是不可见的吗?
萨赫勒
答案 0 :(得分:6)
请改为尝试:
request.setAttribute("submitted", true);
并在您的JSP中:
<c:if test="${submitted}">
// some html
</c:if>