关于json解析的几种方法

关于json解析的几种方法

parse用于从一个字符串中解析出json对象,如 

var str= '{"name":"huangxiaojian","age":"23"}'

注意:单引号写在{}外,每个属性名都必须用双引号,否则会抛出异常。

 

 

JSON.parse(jsonString): 在一个字符串中解析出JSON对象

varstr ='[{"href":"baidu.com","text":"test","orgId":123,"dataType":"curry","activeClass":"haha"}]';

  

JSON.parse(str);

 结果

/*---------------------------------------------------------------------------------*/

2、JSON.stringify(obj): 将一个JSON对象转换成字符串

varobj =[{"href":"baidu.com","text":"test","orgId":123,"dataType":"curry","activeClass":"haha"}];

  

JSON.stringify(obj);

 

"[{"href":"baidu.com","text":"test","orgId":123,"dataType":"curry","activeClass":"haha"}]"

/*---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/

3、jQuery.parseJSON(jsonString): 将格式完好的JSON字符串转为与之对应的JavaScript对象

var str= '[{"href":"baidu.com","text":"test","orgId":123,"dataType":"curry","activeClass":"haha"}]';

  

jQuery.parseJSON(str);

结果

/*---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/

4、JSON.parse()和jQuery.parseJSON()的区别:

有的浏览器不支持JSON.parse()方法,使用jQuery.parseJSON()方法时,在浏览器支持时会返回执行JSON.parse()方法的结果,否则会返回类似执行eval()方法的结果,以上结论参考jquery1.9.1 得出:

parseJSON: function( data ) {

  // Attempt to parseusing the native JSON parser first

  if( window.JSON && window.JSON.parse ) {

    returnwindow.JSON.parse( data );

  }

  

  

  if( data === null) {

    returndata;

  }

  

  

  if( typeofdata === "string") {

  

  

    // Make sureleading/trailing whitespace is removed (IE can't handle it)

    data =jQuery.trim( data );

  

  

    if( data ) {

      //Make sure the incoming data is actual JSON

      //Logic borrowed from http://json.org/json2.js

      if( rvalidchars.test( data.replace(rvalidescape, "@")

        .replace(rvalidtokens, "]")

        .replace(rvalidbraces, "")) ) {

  

  

        return( newFunction( "return "+ data ) )();

      }

    }

  }

  

  

  jQuery.error("Invalid JSON: "+ data );

},

 

/*---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/

 

/*---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/

 

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值