gpt4 book ai didi

java - 循环对象数组并使用 c :if jSTL in a JSP

转载 作者:行者123 更新时间:2023-12-02 09:29:06 25 4
gpt4 key购买 nike

我目前正在开发一个小型网络应用程序项目。主页有一个链接,单击该链接后,将调用一个 servlet,该 servlet 从数据库检索数据(以对象数组列表的形式),将数组列表添加到 session (作为客户),并重定向到对象(客户)所在的 jsp显示在表格中。有一个“更多详细信息”列,其中每行都有一个按钮,用于向另一个 jsp 提交表单,其中包含一个隐藏的输入值,其中 customerNumber 作为其值,num 作为其名称。

我想在第二个 jsp 中循环所有客户,并仅显示 customerNumber 与第一个 jsp 发送的客户编号相匹配的客户。

当前代码:

<%@page contentType="text/html" pageEncoding="UTF-8"%>
<% String hidden = request.getParameter("num"); %>
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Customer Details Page</title>
</head>
<body>
<div>
<c:forEach var="c" items="${customers}">
<c:if test = "${hidden == c.customerNumber}">
<table>
<thead>
<tr>
<th>Customer Phone</th><th>Customer Country</th>
</tr>
</thead>
<tbody>
<tr>
<td>${c.phone}</td><td>${c.country}</td>
</tr>
</tbody>
</table>
</c:if>
</c:forEach>
</div>
</body>
</html>

上面的代码只打印表格标题。任何帮助表示赞赏。

最佳答案

发现问题,尝试直接从 jSTL 标签访问 scriplet 中的变量。下面的代码工作正常:

<%@page contentType="text/html" pageEncoding="UTF-8"%>
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
<%
String hidden = request.getParameter("num");
pageContext.setAttribute("reqNum",hidden);
%>

<!DOCTYPE html>
<html>

<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Customer Details Page</title>
</head>
<body>
<div>
<c:forEach var="c" items="${customers}">
<c:if test = "${reqNum == c.customerNumber}">
<table border="1">
<thead>
<tr>
<th>Customer Phone</th><th>Customer Country</th>
</tr>
</thead>
<tbody>
<tr>
<td><c:out value="${c.phone}" /></td><td><c:out value="${c.country}" /></td>
</tr>
</tbody>
</table>
</c:if>
</c:forEach>
</div>
</body>
</html>

关于java - 循环对象数组并使用 c :if jSTL in a JSP,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58117038/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com