在后台查询的课程:
   课程字段有Id,Name
查出来放在一个lessonlist中.在jsp页面上有一个下拉列表框:
  
 <html: select property="ID">
    <html:options collection="lessonlist" property="ID" lableProperty="name"/>
<html:select>下拉列表中值显示了一们课程.应该是显示查询出来的所有课程啊,数据库中有6们课程?
这是怎么回事??

解决方案 »

  1.   

    debug跟一下看看后台的lessonlist内容
      

  2.   

    http://user.qzone.qq.com/492236022/blog/1221124323
    看看这个或许能够解决你的问题
      

  3.   

    <select name="test">
      <logic:present name="lessonlist">
        <logic:iterator name="lessonlist" id="list">
          <option value="<bean:write name="list" property="ID" />"><bean:write name="list" property="ID" /></options>
        </logic:iterator>
      </logic:present>
    </select>
    这样写比较麻烦 不过希望对你有用