在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
复制代码 代码如下: $.ajax({ url : "user!findUserList.action", type : "post", success: function(data){ var jsonObj=eval("("+data+")"); $.each(jsonObj, function (i, item) { jQuery("#userList").append("<option value="+ item.userId+">"+ item.userRealName+"</option>"); }); }, error: function(text) {} }); 复制代码 代码如下: public void findUserList() throws IOException { List<UserModel> roleuserList = userService.findUserList(); String json = JSONArray.fromObject(roleuserList).toString(); writeHtml(json);; } 复制代码 代码如下: protected void writeHtml(String strData) { try { response.setContentType("text/html; charset=UTF-8"); PrintWriter pw = response.getWriter(); pw.write(strData); pw.flush(); pw.close(); } catch (IOException e) { log.error("writeHtml()", e); } } |
请发表评论