源码网商城,靠谱的源码在线交易网站 我的订单 购物车 帮助

源码网商城

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

  • 时间:2020-08-09 04:41 编辑: 来源: 阅读:
  • 扫一扫,手机访问
摘要:ajax后台处理返回json值示例代码
[u]复制代码[/u] 代码如下:
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; }
  • 全部评论(0)
联系客服
客服电话:
400-000-3129
微信版

扫一扫进微信版
返回顶部