vote up 2 vote down star

Can someone tell me what the difference is between the 2 json files?

http://www.json.org/json.js

http://www.json.org/json2.js

I have a JSON file from 2007-04-13 (It has methods such as parseJSON). I don't see these methods in any of the new versions.

flag

2 Answers

vote up 4 vote down check

From their code:

// Augment the basic prototypes if they have not already been augmented.
// These forms are obsolete. It is recommended that JSON.stringify and
// JSON.parse be used instead.

if (!Object.prototype.toJSONString) {
    Object.prototype.toJSONString = function (filter) {
        return JSON.stringify(this, filter);
    };
    Object.prototype.parseJSON = function (filter) {
        return JSON.parse(this, filter);
    };
}

I guess parseJSON is absolete, therefore the new version (json2) doesn't even use it anymore. However if your code uses parseJSON a lot you could just add this piece of code somewhere to make it work again:

    Object.prototype.parseJSON = function (filter) {
        return JSON.parse(this, filter);
    };
link|flag
Thanks, so it appears that parseJSON has been replaced by JSON.parse? Also, what about toJSONString? Our existing code uses a lot of these methods: boolean.toJSONString() date.toJSONString() number.toJSONString() object.toJSONString() string.toJSONString() – Bob Smith Feb 16 at 3:38
Then also add the 1st piece of code, all the values you specified are Objects, therefore they will all be converted to use JSON.stringify automatically. – Luca Matteis Feb 16 at 3:41
Thanks! I will give this a try. So, can I add these functions to the json.js file? – Bob Smith Feb 16 at 4:33
vote up 3 vote down

Quoting here:

"JSON2.js - Late last year Crockford quietly released a new version of his JSON API that replaced his existing API. The important difference was that it used a single base object."

link|flag

Your Answer

Get an OpenID
or

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