vote up 1 vote down star

Hello, 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?

flag

57% accept rate
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 at 17:03

3 Answers

vote up 0 vote down

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|flag
vote up 1 vote down

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|flag
vote up 1 vote down

Here's how I'm dealing with it.

var methodCallString =  Object.toJSON? Object.toJSON(options.jsonMethodCall) :  JSON.stringify(options.jsonMethodCall);
link|flag

Your Answer

Get an OpenID
or

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