我以一个Servlet为例子
int[] items = ;//这个是选项数组
request.setAttribute("items", items);//把他放到request作用域里面
//然后下面是跳转页面到index.jsp
RequestDispatcher dispatcher = request.getRequestDispatcher("/index.jsp");
dispatcher .forward(request, response);
jsp页面写法:
//添加JSTL标签
<%@ taglib uri="" prefix="c"%>
利用循环迭代遍历出所有的数组
forEach
items="$":从作用域里面取出items对象
var="it":items里面每个元素名称定义为为 it
下面就是使用了
$取得当前数组当前元素的值
OK下拉列表完成
首先加入标签库:<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
然后就可以作循环了
${name }