您现在的位置:首页 >> 前端 >> 内容

ajax后台处理返回json值

时间:2013/9/6 14:17:38 点击:

  核心提示:blic ActionForward xsearch(ActionMapping mapping, ActionForm form,HttpServletRequest request, HttpSe...
blic 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;  
}  

 

Tags:AJ JA AX X后 
作者:网络 来源:不详