由于您使用 jsp 作为视图技术,因此请使用核心标记来根据访问级别决定是显示绿色勾号还是红色叉号。
访问此站点以了解有关核心标签使用的更多信息。不要忘记在项目类路径中包含 jstl.jar 和 standard.jar 文件。它们是支持 jstl 的必要库。
看起来您的应用程序是使用 spring 框架开发的,所以我将尝试仅以这种方式进行解释。
您的 JSP 代码将如下所示:将其命名为userlist.jsp
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
<%@ taglib prefix="form" uri="http://www.springframework.org/tags/form"%>
<!doctype>
<html>
<head>
<script src="${pageContext.request.contextPath}/js/jquery-1.3.2.min.js" type="text/javascript></script>
<script src="${pageContext.request.contextPath}/js/jquery.dd.js" type="text/javascript"></script>
<link rel="stylesheet" type="text/css" href="${pageContext.request.contextPath}/css/dd.css" />
</head>
<body>
<form:select id="userNames" path="userName" tabindex="10">
<form:option value="Select User">Select User</form:option>
<c:forEach begin="${userlist begin index (0)}" end="${userlist size}" var="i">
<c:choose>
<c:when test="${userNameList.user.accessLevel == 1}">
<form:option style="background-image:url(greentick.png);" value="${userNameList.user.userName}">${userNameList.user.userName}</form:option>
</c:when>
<c:otherwise>
<form:option style="background-image:url(redcross.png);" value="${userNameList.user.userName}">${userNameList.user.userName}</form:option>
</c:otherwise>
</c:choose>
</c:forEach>
</form:select>
</body>
</html>
现在您将拥有一个控制器,该控制器将在调用某些操作后被调用,它将返回此 jsp 以及userNameList。下面是示例UserController.java
@Controller
public class UserController {
@RequestMapping(value = "/showUsers", method = RequestMethod.GET)
public String showUserInfo(Model model) {
// here you prepare the userList, the list of Users along with information
// here User can be fetched from DB & values stored in User DTO and then DTO in the list
List<User> userNameList = new ArrayList<User>();
userNameList.add(User DTO objects go here);
model.addAttribute("userNameList", userNameList);
return "userlist"; // remember this is our jsp name
}
}
& 用户 DTO 可以是这样的。下面是示例User.java
public class User {
private String userName;
private int accessLevel;
// setters & getters of variables
}
这不能完全清楚地回答。我已经尽力解释了。你试试这个。它应该工作。