vote up 1 vote down star

What is the best way of converting a multi-dimensional javascript array to JSON?

flag

3 Answers

vote up 1 vote down

Not sure I fully understand your question, but if you are trying to convert the object into a string of JSON then you probably want to look at the native JSON support in all the new browsers. Here's Resig's post on it. For browsers that don't yet support it try the json2.js library (can't post a link because of a stupid SO limit). JSON.stringify(obj) will convert your object to a string of JSON.

link|flag
vote up 3 vote down

Most of the popular JavaScript frameworks have JSON utility functions included. For instance, jQuery has a function that directly calls a url and loads the JSON result as an object : http://docs.jquery.com/Getjson

However, you can get an open-source JSON parser and stringifier from the json website :

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

Then, simply include the code and use the JSON.stringify() method on your array.

link|flag
vote up 0 vote down

You could use the encode function of this library.

link|flag

Your Answer

Get an OpenID
or

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