ajax 如何返回list并且在页面迭代

前端之家收集整理的这篇文章主要介绍了ajax 如何返回list并且在页面迭代前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

一、@H_404_5@假设要转换的list为:unitDetalJson@H_404_5@

1,在后台代码中将list变成json类型:@H_404_5@

JSONArray.fromObject(unitDetailList).toString()

2,jsp的迭代代码为:@H_404_5@

需要中eval转换

$.each(eval(data.unitDetalJson),function (n,value) {
});

二、将list在后台迭代放到json里面,假设list为baseProjectList@H_404_5@

1,后台代码:@H_404_5@

getRequest().setCharacterEncoding("utf-8");
getResponse().setCharacterEncoding("utf-8");

JSONArray objs=new JSONArray();

for(int i=0;i<baseProjectList.size;i++){

JSONObject obj=new JSONObject();

obj.put("text",list.get(i).get(xx));

objs.add(obj);

}

getResponse().getWriter().println(objs.toString());

2,jsp代码@H_404_5@

ajax({

data.xxx

})

猜你在找的Ajax相关文章