主题 : 前台接收并遍历,怎么点不出属性的值
级别: 童生
UID: 124678
积分:16 加为好友
威望: 2 精华: 0
主题:3 回复:6
注册时间:2018-07-24
在线时长:0
1#   发表于:2018-08-21 14:54:41  IP:124.103.*.*
@RequestMapping(value="/selectBookmark.jspx",method=RequestMethod.POST)
public void selectBookmark(@RequestParam Integer contentId, HttpServletRequest request,
HttpServletResponse response) throws UnsupportedEncodingException, JSONException {

CmsUser user = CmsUtils.getUser(request);

JSONObject json = new JSONObject();

List<BookMark> bookmarkList = this.bookmarkDao.getBookmarks(user.getId(),contentId);

json.put("bookmarkList", bookmarkList); 
ResponseUtils.renderJson(response, json.toString()); 
return; 
}


前台接收并遍历,怎么点不出属性的值
级别: 论坛管理员
UID: 122721
积分:57884 加为好友
威望: 2 精华: 1
主题:5 回复:50085
注册时间:2018-05-07
在线时长:0
2#   发表于:2018-08-21 14:56:10  IP:115.234.*.*
这是您二次开发写的代码  还是我们系统知己原有的?
每天告诉自己一次,“我真的很不错”。
1 共1页