I'm trying to figure out what's gone wrong with my json serializing, have the current version of my app with and old one and am finding some surprising differences in the way JSON.stringify() works (Using the JSON library from json.org).

In the old version of my app:

 JSON.stringify({"a":[1,2]})

gives me this;

"{"a":[1,2]}"

in the new version,

 JSON.stringify({"a":[1,2]})

gives me this;

"{"a":"[1, 2]"}"

any idea what could have changed to make the same library put quotes around the array brackets in the new version?

link|improve this question

59% accept rate
1  
looks like it's a conflict with the Prototype library, which we introduced in the newer version. Any ideas how to stringify a json object containing an array under Prototype? – morgancodes Apr 2 '09 at 17:03
1  
Was hit by this bug today. – ablmf Apr 2 '11 at 15:39
feedback

7 Answers

up vote 19 down vote accepted

Since JSON.stringify has been shipping with some browsers lately, I would suggest using it instead of Prototype’s toJSON. You would then check for window.JSON && window.JSON.stringify and only include the json.org library otherwise (via document.createElement('script')…). To resolve the incompatibilities, use:

if(window.Prototype) {
    delete Object.prototype.toJSON;
    delete Array.prototype.toJSON;
    delete Hash.prototype.toJSON;
    delete String.prototype.toJSON;
}
link|improve this answer
No need to check for window.JSON in your own code - the json.org script does this itself – zcrar70 Oct 30 '10 at 15:14
That may be so, but then the whole script file has to be loaded even if it won’t be needed. – Raphael Schweikert Oct 31 '10 at 7:57
2  
Actually, the only statement needed to deal with the question is: delete Array.prototype.toJSON – Jean Vincent Jul 7 '11 at 12:37
feedback

The function JSON.stringify() defined in ECMAScript 5 and above (Page 201 - the JSON Object, pseudo-code Page 205), uses the function toJSON() when available on objects.

Because Prototype.js (or another library that you are using) defines an Array.prototype.toJSON() function, arrays are first converted to strings using Array.prototype.toJSON() then string quoted by JSON.stringify(), hence the incorrect extra quotes around the arrays.

The solution is therefore straight-forward and trivial (this is a simplified version of Raphael Schweikert's answer):

delete Array.prototype.toJSON

This produces of course side effects on libraries that rely on a toJSON() function property for arrays. But I find this a minor inconvenience considering the incompatibility with ECMAScript 5.

It must be noted that the JSON Object defined in ECMAScript 5 is efficiently implemented in modern browsers and therefore the best solution is to conform to the standard and modify existing libraries.

link|improve this answer
3  
This is the most concise answer of what is going on with the extra quoting of the array. – tmarthal Oct 14 '11 at 0:21
feedback

Edit to make a bit more accurate:

The problem key bit of code is in the JSON library from JSON.org (and other implementations of ECMAScript 5's JSON object):

        if (value && typeof value === 'object' &&
                typeof value.toJSON === 'function') {
            value = value.toJSON(key);
        }

The problem is that the Prototype library extends Array to include a toJSON method, which the JSON object will call in the code above. When the JSON object hits the array value it calls toJSON on the array which is defined in Prototype, and that method returns a string version of the array. Hence, the quotes around the array brackets.

If you delete toJSON from the Array object the JSON library should work properly. Or, just use the JSON library.

link|improve this answer
2  
This is not a bug in the library, because this is the exact way that JSON.stringify() is defined in ECMAScript 5. The problem is with prototype.js and the solution is: delete Array.prototype.toJSON This will have some side effects for prototype toJSON serialization, but I found these minor in regard of the incompatibility that prototype has with ECMAScript 5. – Jean Vincent Jul 7 '11 at 12:35
@Jean, I see your point. Edited post. – Bob Jul 7 '11 at 15:28
the Prototype library does not extend Object.prototype but Array.prototype, although typeof array in JavaScript also returns "object", they don't have the same "constructor" and prototype. To solve the problem you need to: "delete Array.prototype.toJSON;" – Jean Vincent Jul 7 '11 at 23:45
@Jean To be fair, Prototype extends all base native objects, including Object. But ok, I see your point again :) Thanks for helping my answer be better – Bob Jul 8 '11 at 1:52
Prototype has stopped extending "Object.prototype" for a long time now (I don't remember which version though) to avoid the for .. in issues. It now only extends static properties of Object (which is much safer) as a namespace : api.prototypejs.org/language/Object – Jean Vincent Jul 10 '11 at 2:54
feedback

I think a better solution would be to include this just after prototype has been loaded

JSON = JSON || {};

JSON.stringify = function(value) { return value.toJSON(); };

JSON.parse = JSON.parse || function(jsonsring) { return jsonsring.evalJSON(true); };

This makes the prototype function avalible as the standard JSON.stringify() and JSON.parse(), but keeps the native JSON.parse() if it is avalible, so this makes things more compatible with older browsers.

link|improve this answer
feedback

Here's how I'm dealing with it.

var methodCallString =  Object.toJSON? Object.toJSON(options.jsonMethodCall) :  JSON.stringify(options.jsonMethodCall);
link|improve this answer
feedback

I'm not that fluent with Prototype, but I saw this in its docs:

Object.toJSON({"a":[1,2]})

I'm not sure if this would have the same problem the current encoding has, though.

There's also a longer tutorial about using JSON with Prototype.

link|improve this answer
feedback

My tolerant solution checks whether Array.prototype.toJSON is harmful for JSON stringify and keeps it when possible to let the surrounding code work as expected:

var dummy = { data: [{hello: 'world'}] }, test = {};

if(Array.prototype.toJSON) {
    try {
        test = JSON.parse(JSON.stringify(dummy));
        if(!test || dummy.data !== test.data) {
            delete Array.prototype.toJSON;
        }
    } catch(e) {
        // there only hope
    }
}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.