struts2标签中s:iterator如何循环遍历某一实体下的set集合数据?????
3个回答
展开全部
pojo
public class User
{
int id;
string name;
int age;
string address;
//getter and setter methods;
}
dao
Set<User> users = userDao.getAllUser();//返回所有的user对象,并封装成Set集合
action
Set <User> users;
UserDao userDao;
//getter and setter
public String getAllUser()
{
users = userDao.getAllUser();
}
jsp
<table>
<tr>
<th>用户ID</th>
<th>用户名</th>
<th>用户年龄</th>
<th>用户地址</th>
</tr>
<s:iterator value="users">
<tr>
<th>${id}</th>
<th>${name}</th>
<th>${age}</th>
<th>${address}</th>
</tr>
</s:iterator>
</table>
public class User
{
int id;
string name;
int age;
string address;
//getter and setter methods;
}
dao
Set<User> users = userDao.getAllUser();//返回所有的user对象,并封装成Set集合
action
Set <User> users;
UserDao userDao;
//getter and setter
public String getAllUser()
{
users = userDao.getAllUser();
}
jsp
<table>
<tr>
<th>用户ID</th>
<th>用户名</th>
<th>用户年龄</th>
<th>用户地址</th>
</tr>
<s:iterator value="users">
<tr>
<th>${id}</th>
<th>${name}</th>
<th>${age}</th>
<th>${address}</th>
</tr>
</s:iterator>
</table>
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
假设后台
Set aset= xxxx;
request.setAttribute("set1", aset);
jsp页面:
<s:iterator value="set1" id="sstt">
<s:property value="sstt"/>
</s:iterator >
Set aset= xxxx;
request.setAttribute("set1", aset);
jsp页面:
<s:iterator value="set1" id="sstt">
<s:property value="sstt"/>
</s:iterator >
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
首先,基础编程知识要好!
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询