struts2 list页面循环显示
packagecom.action;importjava.util.ArrayList;importjava.util.List;importcom.dao.BlogDa...
package com.action;
import java.util.ArrayList;
import java.util.List;
import com.dao.BlogDao;
import com.opensymphony.xwork2.ActionSupport;
import com.vo.Blog;
public class Content_ByIdAction extends ActionSupport{
private int blogId;
private Blog blog;
private List<Blog> bList;
public Blog getBlog() {
return blog;
}
public void setBlog(Blog blog) {
this.blog = blog;
}
public int getBlogId() {
return blogId;
}
public void setBlogId(int blogId) {
this.blogId = blogId;
}
public List<Blog> getbList() {
return bList;
}
public void setbList(List<Blog> bList) {
this.bList = bList;
}
@Override
public String execute() throws Exception {
bList = new ArrayList<Blog>();
bList = new BlogDao().ContentById(blogId);
System.out.println(bList.size());
blog = bList.get(0);
//bList.remove(0);
return SUCCESS;
}
}
bList取出值了
<s:iterator value="bList" var="item">
<tr>
<td><s:property value="#item.temp"/></td>
<td><s:property value="#item.userId"/></td>
</tr>
<tr>
<td><s:property value="#item.blogContent"/></td>
</tr>
<tr>
<td>-----------------------------------------</td>
</tr>
</s:iterator>
不显示任何数据
<td>Master:<s:property value="blog.temp"/></td>
<td>userId:<s:property value="blog.userId"/></td>
<td>BlogCreateTime:<s:property value="blog.blogTime"/></td>
这个显示
求解!!! 展开
import java.util.ArrayList;
import java.util.List;
import com.dao.BlogDao;
import com.opensymphony.xwork2.ActionSupport;
import com.vo.Blog;
public class Content_ByIdAction extends ActionSupport{
private int blogId;
private Blog blog;
private List<Blog> bList;
public Blog getBlog() {
return blog;
}
public void setBlog(Blog blog) {
this.blog = blog;
}
public int getBlogId() {
return blogId;
}
public void setBlogId(int blogId) {
this.blogId = blogId;
}
public List<Blog> getbList() {
return bList;
}
public void setbList(List<Blog> bList) {
this.bList = bList;
}
@Override
public String execute() throws Exception {
bList = new ArrayList<Blog>();
bList = new BlogDao().ContentById(blogId);
System.out.println(bList.size());
blog = bList.get(0);
//bList.remove(0);
return SUCCESS;
}
}
bList取出值了
<s:iterator value="bList" var="item">
<tr>
<td><s:property value="#item.temp"/></td>
<td><s:property value="#item.userId"/></td>
</tr>
<tr>
<td><s:property value="#item.blogContent"/></td>
</tr>
<tr>
<td>-----------------------------------------</td>
</tr>
</s:iterator>
不显示任何数据
<td>Master:<s:property value="blog.temp"/></td>
<td>userId:<s:property value="blog.userId"/></td>
<td>BlogCreateTime:<s:property value="blog.blogTime"/></td>
这个显示
求解!!! 展开
2个回答
展开全部
换种方式吧,不用item可以直接访问
<s:iterator value="bList" var="item">
<tr>
<td><s:property value="temp"/></td>
<td><s:property value="userId"/></td>
</tr>
<tr>
<td><s:property value="blogContent"/></td>
</tr>
<tr>
<td>-----------------------------------------</td>
</tr>
</s:iterator>
如果你想找到原因最好加个debug看看 item的值是在哪里
<s:iterator value="bList" var="item">
<tr>
<td><s:property value="temp"/></td>
<td><s:property value="userId"/></td>
</tr>
<tr>
<td><s:property value="blogContent"/></td>
</tr>
<tr>
<td>-----------------------------------------</td>
</tr>
</s:iterator>
如果你想找到原因最好加个debug看看 item的值是在哪里
追问
af
1001
AAAA
AAAAAAAAAAAAAAAA
2014-03-21 00:00:00
0
======================
LL
1003
还行
阿迪身高多少
2014-03-21 00:00:00
1
======================
af
1001
顶
是大哥哥是个
2014-03-21 00:00:00
1
这是控制台显示的 按你说的试了 不行啊
本回答被提问者和网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
<s:iterator value="bList">
<tr>
<td><s:property value="temp"/></td>
<td><s:property value="userId"/></td>
</tr>
<tr>
<td><s:property value="blogContent"/></td>
</tr>
<tr>
<td>-----------------------------------------</td>
</tr>
</s:iterator>
我一般都是这样写的,action中取值的方法跟你差不多,个人觉得这种东西知道怎么用就行了,只是写法问题,不需要太纠结
<tr>
<td><s:property value="temp"/></td>
<td><s:property value="userId"/></td>
</tr>
<tr>
<td><s:property value="blogContent"/></td>
</tr>
<tr>
<td>-----------------------------------------</td>
</tr>
</s:iterator>
我一般都是这样写的,action中取值的方法跟你差不多,个人觉得这种东西知道怎么用就行了,只是写法问题,不需要太纠结
追问
我实例化一个对象将list的第一个值取出来 这个对象的数据显示 可是list却不显示 这个方法也试了
追答
那你取出这个list之后重新实例化一下
bList = new ArrayList();
aList = new ArrayList();
aList = new BlogDao().ContentById(blogId);
for(int i=0;i<aList.size();i++)
{
blog=new Blog();
blog = aList.get(i);
bList.add(blog);
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询