<logic:iterator id="dto" value="list" status="index">
<s:property value="elment"/>
</logic:iterator>
jsp中把数据库全量查询后填充select列表:
举例说明:
<table>
<tr>
<td width="400px" align="left">入学批次:<SELECT NAME="grade"
id="grade" onchange="refreshEduLevelAndSpecialAjax();"> //选择入学批次会刷新层次和专业
<OPTION VALUE="0">
--请选择--
<c:forEach items="${gradeInfo}" var="gradeInfo">
<OPTION VALUE="${gradeInfogradeName}">${gradeInfogradeName}
</c:forEach>
</SELECT></td>
<td width="400px" align="left">统考课程:<SELECT
NAME="uniExamCourseId" id="uniExamCourseId">
<OPTION VALUE="0">
--请选择--
<c:forEach items="${unifiedExamCourseList}" var="uniExamCourse">
<OPTION VALUE="${uniExamCourseid}">${uniExamCourseuniExamCourseName}
</c:forEach>
</SELECT></td>
</tr>
<tr>
<td colspan="2" id="refreshEduLevelAndSpecialAjax"> //设置ID,用于填充层次和专业的下拉框
<table>
<tr>
<td width="400" align="left">层 次:<SELECT
NAME="eduLevelId" id="eduLevelId"
onchange="refreshSpecialAjax();"> //选择层次后刷新专业
<OPTION VALUE="0">--请选择--</OPTION>
<c:forEach items="${educationLevel}" var="educationLevel">
<OPTION VALUE="${educationLevelid}">${educationLeveleducationLevelName}
</c:forEach>
</SELECT></td>
<td width="400" align="left" id="refreshSpecialAjax">专 业:<SELECT //设置ID,用于填充专业的下拉框
NAME="specialId" id="specialId">
<OPTION VALUE="0">--请选择--</OPTION>
<c:forEach items="${specialList}" var="special">
<OPTION VALUE="${specialid}">${specialspecialName}
</c:forEach>
</SELECT></td>
</tr>
</table>
</td>
</tr>
</table>
java后台通过dao接口获取specialList的值,并且保存到session即可。
jsp中通过getAttribute()方法获得setAttribute()设置的属性,如下代码:
<% String username=(String)requestgetAttribute("username"); %>setAttribute 是应用服务器把这个对象放在该页面所对应的一块内存中去,当页面服务器重定向到另一个页面时,应用服务器会把这块内存拷贝另一个页面所对应的内存中。 这样getAttribute就能取得你所设下的值,当然这种方法可以传对象。session也一样,只是对象在内存中的生命周期不一样而已。
1 在servlet中getSession;
2 使用setAttribute定义一个属性sqlResultSet;
3 在bjsp中通过getAttribute获得这个属性(注意需要强制转换类型)
以上就是关于struts action中查询出一个ResultSet RS,如何在jsp中用标签显示出来全部的内容,包括:struts action中查询出一个ResultSet RS,如何在jsp中用标签显示出来、jsp中下拉框中的值从数据库中动态获取、servlet request.setAttribute()里面的值怎么在jsp中取出来等相关内容解答,如果想了解更多相关内容,可以关注我们,你们的支持是我们更新的动力!
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)