一、假设要转换的list为:unitDetalJson
JSONArray.fromObject(unitDetailList).toString()
2,jsp的迭代代码为:
需要中eval转换
$.each(eval(data.unitDetalJson),function (n,value) {
});
二、将list在后台迭代放到json里面,假设list为baseProjectList
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代码
ajax({
data.xxx
})
原文链接:https://www.f2er.com/ajax/165913.html