up vote 2 down vote favorite
share [g+] share [fb]

The people on this website seem to know everything so I figured I would ask this just in case:

Is there a method/function in prototype that converts a JSON object to a string that you can store in a cookie?

If not,..i'll just use another external library.

Thanks, Andrww

link|improve this question
feedback

2 Answers

up vote 6 down vote accepted

Sure there is: Prototype JSON

var data = {name: 'Violet', occupation: 'character', age: 25 };
var myString = Object.toJSON(data);
// myString = '{"name": "Violet", "occupation": "character", "age": 25}'

Then shove myString into your cookie

link|improve this answer
what is Object? Do I have to instantiate this earlier? Do i need some extra prototype library?...because it is not being recognized. Andrew – Andrew Dec 6 '08 at 22:08
Object is part of javascript - it must be something else that's not working. Either Prototype isn't loaded properly, or data (or whatever you called your argument) doesn't exist – Greg Dec 6 '08 at 22:17
hm...alright i'll take your word for it, prototype has to be loaded cuz i use all the $() and scriptaculous etc. ....so i don't know what it could be. all well, JSON.js it is.,...thanks for the answers – Andrew Dec 6 '08 at 22:35
upon further inspection if I put the code inside a function it works! ...(i was just testing it outside any function)....:) – Andrew Dec 6 '08 at 22:41
Hmmm it doesn't need to be inside a function but I guess there was something else going on (prototype loading afterwards or something)... glad it works though. – Greg Dec 6 '08 at 22:43
show 2 more comments
feedback

Assuming you're speaking of Prototype JavaScript framework, why not just use JavaScript's own JSON functionality? JSON does after all stand for JavaScript Object Notation.

link|improve this answer
Plain Javascript can go from JSON string to object, but doesn't have a function to JSON-encode an object to a string – Greg Dec 6 '08 at 21:44
JavaScript doesn't have JSON functionality (neither encoding, nor safe decoding). Firefox 3.1 and IE 8 implemented Douglas Crockford's "json2" API, but for everything else you need a library. – orip Dec 6 '08 at 22:20
There's four libraries available at json.org for the functionality and from what I've read and understood JSON support already is in most mainline browsers (with the natural exception of IE7 of course), I'm a bit confused by this, for me this is like asking if I should drink water if I'm thirsty. – P Arrayah Dec 6 '08 at 22:25
Javascript natively accepts json, e.g. var foo = {}. What it doesn't do is string-to-object ('{}') or object-to-string (foo -> '{}') – Greg Dec 6 '08 at 22:30
Also it's not "safe" as you can do var foo = {"blah":someFunction()} - of course, this can be a very useful feature as well – Greg Dec 6 '08 at 22:31
feedback

Your Answer

 
or
required, but never shown