日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程资源 > 编程问答 >内容正文

编程问答

返回json格式

發布時間:2025/4/16 编程问答 37 豆豆
生活随笔 收集整理的這篇文章主要介紹了 返回json格式 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

JSON.parse(),JSON.stringify(),jQuery.parseJSON()的用法

1. JSON.parse(jsonString): 在一個字符串中解析出JSON對象

1 2 3 var?str =?'[{"href":"baidu.com","text":"test","orgId":123,"dataType":"curry","activeClass":"haha"}]'; JSON.parse(str);

  結果:


2. JSON.stringify(obj) : 將一個JSON對象轉換成字符串

1 2 3 var?obj = [{"href":"baidu.com","text":"test","orgId":123,"dataType":"curry","activeClass":"haha"}]; JSON.stringify(obj);

  結果:

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

  

3. jQuery.parseJSON(jsonString) : 將格式完好的JSON字符串轉為與之對應的JavaScript對象?

1 2 3 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()方法的結果,以上結論參考jquery 1.9.1 得出:

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 parseJSON:?function( data ) { ????// Attempt to parse using the native JSON parser first ????if?( window.JSON && window.JSON.parse ) { ????????return?window.JSON.parse( data ); ????} ????if?( data ===?null?) { ????????return?data; ????} ????if?(?typeof?data ===?"string"?) { ????????// Make sure leading/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?(?new?Function(?"return "?+ data ) )(); ????????????} ????????} ????} ????jQuery.error(?"Invalid JSON: "?+ data ); },

轉載于:https://www.cnblogs.com/Darkqueen/p/9698430.html

總結

以上是生活随笔為你收集整理的返回json格式的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。