JSONstring从jQuery 1.4.1丢失?

显然,jQuery有能力将给定的对象或string解码成JSON对象。 不过,我有一个JS对象,我需要POST回到服务器,我发现jQuery中没有实用程序包装JSON.stringify()函数。 该function可在Chrome,Safari 4,FF3.6和IE8中find,但在早期的浏览器中找不到。 我可以在支持它的浏览器中本地使用它,但是否则会被迫使用Crockford的JSON脚本。

是否有一些内置的jQuery处理JSON编码和解码,取代了Crockford脚本?

你可能想检查一下: http : //www.json.org/js.html

你可以使用“Closure Library”(Google)制作一个跨浏览器的JSON编码器/解码器。

只需转到http://closure-compiler.appspot.com/

并在文本字段中插入以下内容,然后点击“编译”:

// ==ClosureCompiler== // @compilation_level ADVANCED_OPTIMIZATIONS // @output_file_name default.js // @use_closure_library true // ==/ClosureCompiler== goog.require('goog.json'); if (!window['JSON']) window['JSON']={}; if (typeof window['JSON']['stringify'] !== 'function') window['JSON']['stringify']=goog.json.serialize; if (typeof window['JSON']['parse'] !== 'function') window['JSON']['parse']=goog.json.parse; 

jQuery可以用jQuery.parseJSON()生地解码JSONstring。

对于编码,但我只知道一个插件: jquery-json

jQuery不需要内部的这个function,因此不提供一个方便的方法来做到这一点。

JSON.stringify()是将对象编码为该对象的JSONstring表示forms的标准和推荐方式。 这是许多浏览器中本机JSON对象的一种方法,build议您使用json2.js(https://github.com/douglascrockford/JSON-js)来提供回退。;

为了build立stewe的答案,使用Advanced打开的闭包编译器为您提供了一个脚本,用一堆一个字母variables来污染全局命名空间。 所以,我只是把它包装在一个匿名的函数调用中,像这样:

(function() { function g(a){var b=typeof a;if("object"==b)if(a){if(a instanceof Array)return"array";if(a instanceof Object)return b;var c=Object.prototype.toString.call(a);if("[object Window]"==c)return"object";if("[object Array]"==c||"number"==typeof a.length&&"undefined"!=typeof a.splice&&"undefined"!=typeof a.propertyIsEnumerable&&!a.propertyIsEnumerable("splice"))return"array";if("[object Function]"==c||"undefined"!=typeof a.call&&"undefined"!=typeof a.propertyIsEnumerable&&!a.propertyIsEnumerable("call"))return"function"}else return"null"; else if("function"==b&&"undefined"==typeof a.call)return"object";return b};function h(a){a=""+a;if(/^\s*$/.test(a)?0:/^[\],:{}\s\u2028\u2029]*$/.test(a.replace(/\\["\\\/bfnrtu]/g,"@").replace(/"[^"\\\n\r\u2028\u2029\x00-\x08\x10-\x1f\x80-\x9f]*"|true|false|null|-?\d+(?:\.\d*)?(?:[eE][+\-]?\d+)?/g,"]").replace(/(?:^|:|,)(?:[\s\u2028\u2029]*\[)+/g,"")))try{return eval("("+a+")")}catch(b){}throw Error("Invalid JSON string: "+a);}function i(a,b){var c=[];j(new k(b),a,c);return c.join("")}function k(a){this.a=a} function j(a,b,c){switch(typeof b){case "string":l(b,c);break;case "number":c.push(isFinite(b)&&!isNaN(b)?b:"null");break;case "boolean":c.push(b);break;case "undefined":c.push("null");break;case "object":if(null==b){c.push("null");break}if("array"==g(b)){var f=b.length;c.push("[");for(var d="",e=0;e<f;e++)c.push(d),d=b[e],j(a,aa?aacall(b,""+e,d):d,c),d=",";c.push("]");break}c.push("{");f="";for(e in b)Object.prototype.hasOwnProperty.call(b,e)&&(d=b[e],"function"!=typeof d&&(c.push(f),l(e,c),c.push(":"), j(a,aa?aacall(b,e,d):d,c),f=","));c.push("}");break;case "function":break;default:throw Error("Unknown type: "+typeof b);}}var m={'"':'\\"',"\\":"\\\\","/":"\\/","\u0008":"\\b","\u000c":"\\f","\n":"\\n","\r":"\\r","\t":"\\t","\x0B":"\\u000b"},n=/\uffff/.test("\uffff")?/[\\\"\x00-\x1f\x7f-\uffff]/g:/[\\\"\x00-\x1f\x7f-\xff]/g; function l(a,b){b.push('"',a.replace(n,function(a){if(a in m)return m[a];var b=a.charCodeAt(0),d="\\u";16>b?d+="000":256>b?d+="00":4096>b&&(d+="0");return m[a]=d+b.toString(16)}),'"')};window.JSON||(window.JSON={});"function"!==typeof window.JSON.stringify&&(window.JSON.stringify=i);"function"!==typeof window.JSON.parse&&(window.JSON.parse=h); })();

现在你可以打电话给:

var JSONString = JSON.stringify({name: 'value'});

当使用jQuery时,通常不需要JSON.stringify()函数。 举例来说,使用ajax发送javascript数据到服务器的常见情况,jquery有内置的函数来处理这个问题:(例子来自http://api.jquery.com/category/ajax/

 $.post("test.php", { name: "John", time: "2pm" } ); $.post("test.php", { 'choices[]': ["Jon", "Susan"] }); $.getJSON("test.js", { name: "John", time: "2pm" }, function(json) { alert("JSON Data: " + json.users[3].name); }); 

在上面所有的例子中,发送的javascript数据都是由jQuery自动序列化的。

这些情况下的序列化与JSON.Stringify()不同,而是将数据序列化为一个html查询string(请参见http://en.wikipedia.org/wiki/Query_string#Structure )。

然而,这种forms的序列化对于大多数(但不是全部)应用程序来说都很好