zoukankan      html  css  js  c++  java
  • 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;
    	}


  • 相关阅读:
    CSS部分
    css基础
    css初探
    html表单
    mysql视图 触发器 事物 函数 存储过程
    pymysql
    mysql数据备份与操作
    html基础
    mysql 索引
    tuple,list,dict,set用法
  • 原文地址:https://www.cnblogs.com/keanuyaoo/p/3303822.html
Copyright © 2011-2022 走看看