码迷,mamicode.com
首页 > Web开发 > 详细

json字符串传到前台input

时间:2018-12-06 20:43:17      阅读:166      评论:0      收藏:0      [点我收藏+]

标签:直接   set   array   ISE   count   page   ring   super   字符   

JSONObject把对象转换成的json字符串,无法直接通过request.setAttribute();传到页面的input标签

如下是错误的:
request.setAttribute(“pageInfoJsonStr”, JSONObject.fromObject(pageInfo).toString());

还需要 jsonStr.replaceAll(“\”“, “’”)再放到request.setAttribute中
---------------------

JSONArray jsonList = new JSONArray();
if (TaskListReturn != null) {
jsonList = JSONArray.fromObject(TaskListReturn);
}
if (SuperviseManage != null) {
SuperviseManage.put("list", TaskList);
String obj = jsonList.toString();
obj = obj.replace("\"", "‘");
SuperviseManage.put("jsonList", obj);
}
SuperviseManage.put("TaskcountReturn", TaskcountReturn);

json字符串传到前台input

标签:直接   set   array   ISE   count   page   ring   super   字符   

原文地址:https://www.cnblogs.com/konglxblog/p/10078314.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!