What is the best way of converting a multi-dimensional javascript array to JSON?
|
|
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. |
||
|
|
|
|
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 : Then, simply include the code and use the JSON.stringify() method on your array. |
||
|
|
|
|
You could use the encode function of this library. |
||
|
|
