jstl foreach 怎么遍历json 数组
<c:forEach items="${jsonArray }" var="bean">
${bean.XXX }
</c:forEach>
<%
//简单的map对象
Map map = new HashMap();
map.put("aa", "你好");
map.put("bb","中国");
request.setAttribute("person1", map);
//把map放入request域对象,真正的时候是有另一个控制器传送过来的,在这里我直接放在同一个页面,下面也一样
//map中放入User对象
User u1 = new User();
u1.setName("hello");
u1.setAge(18);
User u2 = new User();
u2.setName("world");
u2.setAge(21);
map.put("aa", u1);
map.put("bb",u2);
request.setAttribute("person", map);
//set
Set set = new HashSet();
set.add(u1);
set.add(u2);
request.setAttribute("person2", set);
%>
<!-- 遍历简单的map对象
<c:forEach items="${person1 }" var="per1">
key=${per1.key },value=${per1.value }
</c:forEach><br>
-->
<!-- 遍历Map中的User对象 -->
<h2>map的迭代</h2>
<c:forEach items="${person}" var="user">
key=${user.key },name=${user.value.name },age=${ user.value.age}
</c:forEach><br>
<h2>Set集合的遍历</h2>
<c:forEach items="${person2 }" var="per">
name=${per.name },age=${per.age }
</c:forEach>
</body>
上述的User中有两个属性,分别是name和age,以及相对应的set和get的方法。
2019-04-25
可以使用artTemplate,
$.ajax({
type : 'POST',
url : '../',
data : "{}",
dataType : "json",
contentType : "application/json",
success : function(data) {
const res = data.data;
document.getElementById('buy').innerHTML = template('hhhh', {
data : res
});
}
})
<div class="J_addressList clearfix" id="buy">
<script id="hhhh" type="text/html">
{{each data}}
<div class="top_item">
<span>{{$value.gtext}}</span>
</div>
{{/each}}
</script>
</div>
记得引入artTemplate包
则:$(data).each(function(index,value){
alert(value);//这个就是遍历的数组中的值
});
我想问的是jsp里面用jstl c:foreach标签!
<c:forEach items="${jsonArray }" var="bean">
${bean.XXX }
</c:forEach>
广告 您可能关注的内容 |