首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > JavaScript >

ajax后台处理回来json值

2013-09-07 
ajax后台处理返回json值public ActionForward xsearch(ActionMapping mapping, ActionForm form,HttpServl

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;}

热点排行