js和java中的json对象无法互相转换的吧(用struts2可以),可以在java中将对象转换为json字符串,传到js后,再在js中将json字符串转换成json对象 Java code Map map1 = new HashMap(); Map map2 = new HashMap(); map1.put("id", 1); map1.put("name", "张三"); map2.put("id", 2); map2.put("name","李四"); List list = new ArrayList(); list.add(map1) list.add(map2) Map jsonMap = new HashMap(); jsonMap.put("jsonstr",list); //必须是map对象才能转换成json对象 JSONObject json = JSONObject.fromObject(map); //要用到json-lib-2.3-jdk15.jar return json.toString(); 记得引入json.js JScript code UserAction.getUser(function(result) { var jsonResult = JSON.parse(result);//如何不行用var jsonResult=JSON.parseJSON(),json版本问题 var resultList = jsonResult['jsonstr']; for(var one in resultList){ var item= resultList[one]; alert(item.id); alert(item.name); }
在使用Web Api的时候,有时候只想返回JSON;实现这一功能有多种方法,本文提供两种方式,一种传统的,一种作者认为是正确的方法。 JSON in Web API – the formatter based approach 只支持JSON最普遍的做法是:首先清除其他所有的formatter...