jsp已经获得了json,怎样用js将它展现在html里
这是我的action部分,就是将json传到aaa.jsp,我直接写在<html><body>${records}</body></html>可以展示出来我想只取其中某个...
这是我的action部分,就是将json传到aaa.jsp ,我直接写在<html><body>${records}</body></html>可以
展示出来 我想只取其中某个值循环打印出来该怎么办 (从数据库里取得 多个记录 想循环展示出来)
求具体方法
@Action("aaa")
public String codemstList() {
List<ReportFileDto> list = qualityReportFindService.getListReportFileDtoJson();
try {
String records = "";
for (int i = 0; i < list.size(); i++) {
ReportFileDto reportFileDto = list.get(i);
JSONObject jsonObject = JSONObject.fromObject(reportFileDto);
records += jsonObject;
if (i != list.size() - 1) {
records += ",";
}
}
request.setAttribute("records", records);
} catch (Exception e) {
// TODO: handle exception
e.printStackTrace();
}
return SUCCESS;
}
求高手啊 展开
展示出来 我想只取其中某个值循环打印出来该怎么办 (从数据库里取得 多个记录 想循环展示出来)
求具体方法
@Action("aaa")
public String codemstList() {
List<ReportFileDto> list = qualityReportFindService.getListReportFileDtoJson();
try {
String records = "";
for (int i = 0; i < list.size(); i++) {
ReportFileDto reportFileDto = list.get(i);
JSONObject jsonObject = JSONObject.fromObject(reportFileDto);
records += jsonObject;
if (i != list.size() - 1) {
records += ",";
}
}
request.setAttribute("records", records);
} catch (Exception e) {
// TODO: handle exception
e.printStackTrace();
}
return SUCCESS;
}
求高手啊 展开
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询