Action中传出来一个list,代码如下:
ArrayList<Users> ls= udao.queryUser();
Map map=ActionContext.getContext().getSession();
map.put("ls", ls);
jsp中代码:
<table border="1" bordercolor="green" width="30%" cellspacing="0" >
<tr>
<th>ID</th>
<th>账号</th>
<th>密码</th>
</tr>
<!-- value:被迭代的集合;id:指定集合里面的元素的别名;有的时候如果什么错误
也没有提示,但就显示不出来的话,试着换换id的名称,我做别的一个项目就遇
到了这问题,很奇怪,不知道什么原因,希望有知道的可以给解答一下!-->
<s2:iterator value="#session.ls" id="userslist">
<tr align="center">
<!-- if判断 -->
<s2:if test="#userslist.uid>=2">
<!-- 可以用下面两种方式将其显示出来 -->
<td></td>
<td><s2:property value="#userslist.uname" /></td>
<td></td>
</s2:if>
</tr>
</s2:iterator>
</table>