怎样用struts2标签迭代输出list中的map对象?
[
{cp_url=null, cp_id=1, cp_title=www, cp_content=wwwwwww, cp_pubtime=2011-08-13, cp_author=admin, cp_filename=null},
{cp_url=null, cp_id=2, cp_title=hc, cp_content=hchchc, cp_pubtime=2011-08-18, cp_author=admin, cp_filename=null},
{cp_url=null, cp_id=3, cp_title=zx, cp_content=zxzxzx, cp_pubtime=2011-08-17, cp_author=admin, cp_filename=null},
{cp_url=null, cp_id=4, cp_title=yf, cp_content=yfyfyf, cp_pubtime=2011-08-16, cp_author=admin, cp_filename=null},
{cp_url=null, cp_id=5, cp_title=fys, cp_content=ssssfffsssyyy, cp_pubtime=2011-08-15, cp_author=admin, cp_filename=null}
]
这个是从action得到的list,list中是map对象,怎样迭代输出这些map对象中的属性呢?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
已经解决
<s:iterator value="careerpersonList">
<s:iterator>
<s:if test="key=='cp_title'">${value}</s:if>
</s:iterator>
<br/>
<hr/>
</s:iterator>
引用来自“hnuweiwei”的答案
已经解决
<s:iterator value="careerpersonList">
<s:iterator>
<s:if test="key=='cp_title'">${value}</s:if>
</s:iterator>
<br/>
<hr/>
</s:iterator>