首页 > 代码库 > json详解

json详解

<span style="font-size:12px;">function testJson() {

	var jsonData = http://www.mamicode.com/{>

通过AJAX接收JSON数据
通过AJAX接收JSON数据有三个不同方式.委派,回调与解释.
通过委派得到JSON
 
这个方法没有标准命名约定,不过"委派法"倒是一个挺好的描述名字,因为服务器创建的javascript表达式文件会把JSON分派到一个变量 中.当把服务器的返回文本作为参数传给eval函数时,someVar变量就会装载JSON对象,然后你就可以通过这个变量访问.
var JSONFile = "someVar = { ‘color‘ : ‘blue‘ }";  // example of what is received from the server.服务器返回数据示例
eval(JSONFile); // Execute the javascript code contained in JSONFile.执行JSONFile中的javascript代码.
document.writeln(someVar.color); // 输出‘blue‘
 
通过回调得到JSON
 
第二个方法预先定义一个以JSON数据作为参数的函数,然后服务器返回的javascript表达式中调用这个函数.这个方法叫"回调法".这个方式被广泛地应用在处理第三方JSON数据中(例如,从其它域名获取的JSON数据)
function processData(incommingJSON) {
   document.writeln(incommingJSON.color); // 输出‘blue‘
}
// example of what is received from the server...
var JSONFile = "processData( { ‘color‘ : ‘blue‘ } )";
eval(JSONFile);