ECMAScript
5对解析JSON的行为进行了规范,定义了全局对象JSON。
JSON对象有两个方法:stringify()和parse()。在最简单的情况下,这两个方法分别用于把JavaScript对象序列化为JSON字符串和把JSON字符串解析为原生JavaScript。例如:
新建一个HTML:代码如下:
复制代码
代码如下:
<html>
<head>
<title></title>
<script
type="text/javascript">
function
init()
{
var
book={
title:"JavaScript高级程序设计",
authors:[
"Nicholas
C.
Zakas"
],
edition:3,
year:2011
}
var
jsonBook=JSON.stringify(book)
var
objectBook=JSON.parse(jsonBook)
var
title=objectBook.title}
</script>
</head>
<body>
<input
type="button"
onclick="init()"
value="测试"
/>
</body>
</html>
默认情况下,JSON.stringify()输出的JSON字符串不包含任何空字符或缩进,因此保存在jsonBook中的字符串如下所示:
复制代码
代码如下:
{"title":"JavaScript高级程序设计","authors":["Nicholas
C.
Zakas"],"edition":3,"year":2011}
在序列化JavaScript对象时,所有函数及原型成员都会被有意忽略,不体现在结果中。此外,值为undefined的任何属性也都会被跳过。结果中最终都是值为有效JSON数据类型的实例属性。
注意,虽然book与objectBook具有相同的属性,但它们是两个独立的、没有任何关系的对象。如果传给JSON.parse()的字符串不是有效的JSON,该方法会抛出错误。
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)}
var result={"Category":[{"categoryId":1,"categoryName":"饮品","categoryImage":"/upload/yinpin.jpg"},{"categoryId":2,"categoryName":"食品","categoryImage":"/upload/shiping.jpg"},{"categoryId":3,"categoryName":"酒类","categoryImage":"/upload/jiullei.jpg"}],"recommend":{"id":11,"productName":"统一老坛泡椒牛肉袋面香辣味110g*24袋","filenameSmall":"/upload/ty_ltpj_small.jpg","productPrice":48.0,"productCost":47.5}}var val = result.Category[0].categoryId
这样就能得到值了啊
你的代码失效的原因有两个:
1、result已经是JSON格式的数据了,所以不需要再次用JSON.parse(result)进行转换
2、result.Category是个数组,所以要用[0]来取出某一项的值