jsp中有时候在js中操作某些java后台传递过来的数据逻辑比较复杂,比如list内容的遍历,可以直接在页面上添加java脚本来执行内容,代码如下:
//在js中插入java代码操作 <% //取出java后台设置好的userList List
这样的操作省去了js页面接收java数据的内容,java代码如下:
List > mapList = new ArrayList >();Map map = new HashMap ();map.put("userId", "1");map.put("userName", "水狼一族");mapList.add(map);req.setAttribute("userList", mapList);