Python语言技术文档

微信小程序技术文档

php语言技术文档

jsp语言技术文档

asp语言技术文档

C#/.NET语言技术文档

html5/css技术文档

javascript

点击排行

您现在的位置:首页 > 技术文档 > ajax

ajax后台处理返回json值示例代码

来源:中文源码网    浏览:126 次    日期:2024-05-17 12:21:01
【下载文档:  ajax后台处理返回json值示例代码.txt 】


ajax后台处理返回json值示例代码
复制代码 代码如下: public ActionForward xsearch(ActionMapping mapping, ActionForm form, HttpServletRequest request, HttpServletResponse response) throws Exception { String parentId = request.getParameter("parentId"); String supplier = request.getParameter("supplier"); List itemList = new ArrayList(); if(parentId.equals("")){ parentId="0"; } Map map=new TawApTreeServlet().getTypeList(parentId, supplier); for (Iterator rowIt = map.keySet().iterator(); rowIt.hasNext();) { String id = (String) rowIt.next(); TawCommonsUIListItem uiitem = new TawCommonsUIListItem(); uiitem.setItemId(id); uiitem.setText((String)map.get(id)); uiitem.setValue(id); itemList.add(uiitem); } response.setContentType("text/xml;charset=UTF-8"); // 返回JSON对象 response.getWriter().print(JSONUtil.list2JSON(itemList)); return null; }

相关内容