我试图在使用arraylist的jsp页面中显示一些值,但它显示除了顶行值之外的所有值。这是我写的代码。
<table border="1">
<tr>
<th>Book ID</th>
<th>Branch ID</th>
<th>Card No.</th>
<th>Date Out</th>
<th>Due Date</th>
</tr>
<%
LibModel lm=(LibModel)request.getAttribute("data");
for(int a=0;a<lm.branch_id.size();a++) {
%>
<tr>
<td><%= lm.book_ids.get(a)%></td>
<td><%= lm.branch_id.get(a)%></td>
<td><%= lm.cards.get(a)%></td>
<td><%= lm.date_out.get(a)%></td>
<td><%= lm.due_date.get(a)%></td>
</tr>
<% }%>
</table>
我正在提供输入
book id = 721 卡号= 900
我的查询支持子字符串匹配。
它应该显示
72127317 1 9009 2013-11-25 2013-12-09
72127317 3 9009 2013-11-25 2013-12-09
但它的显示只是
72127317 3 9009 2013-11-25 2013-12-09