1

我在 JSP 页面中有以下内容

 <table border=1>
        <thead>
            <tr>
                <th>User Id</th>
                <th>First Name</th>                
                <th>DOB</th>                
                <th colspan=2>Action</th>
            </tr>
        </thead>
        <tbody>
            <c:forEach items="${users}" var="user">
                <tr>
                    <td><c:out value="${user.userid}" /></td>
                    <td><c:out value="${user.firstName}" /></td>                    
                    <td><fmt:formatDate pattern="dd-MMM-yy" value="${user.dob}" /></td>                    
                    <td><a href="UserController?action=edit&userId=<c:out value="${user.userid}"/>">Update</a></td>
                    <td><a href="UserController?action=delete&userId=<c:out value="${user.userid}"/>">Delete</a></td>
                </tr>
            </c:forEach>
        </tbody>
    </table>
<p><a href="UserController?action=insert">Add User</a></p>

普通用户通过单击添加用户按钮只能输入 10 行,管理员可以在表格中输入任意数量的行。

管理员添加的行只能被管理员查看,其他所有由普通用户添加的行,普通用户无法查看管理员添加的行。

如何根据上述规则有条件地在 JSP 中呈现行?

谢谢

4

1 回答 1

3

您可以使用<c:if>标签有条件地显示数据。像这样的东西:

<c:forEach items="${users}" var="user">
    <c:if test="${user.role != 'admin'}">
        <!-- code here -->
    </c:if>
</c:forEeach>

另外,如果已添加的用户数为 10 并且用户当前用户不是管理员,我相信您将需要有条件地禁用添加用户链接。

于 2013-03-26T05:59:29.240 回答