jQuery.parseJSON(json)
概述
接受一个JSON字符串,返回解析后的对象。
传入一个畸形的JSON字符串会抛出一个异常。比如下面的都是畸形的JSON字符串:
- {test: 1} ( test 没有包围双引号)
- {'test': 1} (使用了单引号而不是双引号)
另外,如果你什么都不传入,或者一个空字符串、null或undefined,parseJSON都会返回 null
context.Response.ContentType = "text/plain"; string json = "[{\"name\":\"测试1\",\"id\":\"1\"},{\"name\":\"测试2\",\"id\":\"2\"}]"; context.Response.Write(json);
必须双引号 原文链接:https://www.f2er.com/json/290603.html