亲宝软件园·资讯

展开

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

人气:0
想了解ajax后台处理返回json值代码实例的相关内容吗,在本文为您仔细讲解ajax处理返回json值的相关知识和一些Code实例,欢迎阅读和指正,我们先划重点: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;
}

加载全部内容

相关教程
猜你喜欢
用户评论