当前位置: 代码迷 >> Java Web开发 >> 在线考试中用struts2的<s:iterator >遍历从数据库中查询到的试题和选项解决方案
  详细解决方案

在线考试中用struts2的<s:iterator >遍历从数据库中查询到的试题和选项解决方案

热度:1263   发布时间:2013-02-25 21:19:25.0
在线考试中用struts2的<s:iterator >遍历从数据库中查询到的试题和选项
做一个在线考试系统用struts2,现在如何在页面上显示试题和选项信息?试题是从数据库中调出来的

------解决方案--------------------------------------------------------
把试题放到一个list(List<Question> questions)集合里,提供getter和setter方法
前台用
<s:iterator value="questions" var="q" >遍历

<s:property value="#q.question.属性" />
……

</s:iterator>
  相关解决方案