Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Hay I have an Array (var cars = []) which hold a few integers. I've added a few values to the array, but i now need to send this array to a page via jQuery's .get method. But i want to send it as a JSON object.

How do i convert an array to a JSON object?

share|improve this question
Just double-checking: is the array you want to send to the page a JavaScript array or is it on the server? – Ian Oxley Feb 19 '10 at 10:22
it's a Javascript array, I will be sending it to a Python script and Python will use the JSON string and work with that. – dotty Feb 19 '10 at 10:24

4 Answers

up vote 48 down vote accepted

Take this script: https://github.com/douglascrockford/JSON-js/blob/master/json2.js

And call:

var myJsonString = JSON.stringify(yourArray);
share|improve this answer
3  
This works, does jQuery have a function like this? I'd prefer not to attach another js file if jQuery has a function already. – dotty Feb 19 '10 at 10:27
1  
jQuery has the implementation of JSON.parse in 1.4.1, but not JSON.stringify... If you minifiy json2.js its <3k I think. – gnarf Feb 19 '10 at 10:36
4  
Yeah I was suprised jQuery didn't have this built in too – JonoW Feb 19 '10 at 10:41
Got json2.js down to 3,334 bytes. This will have to do for the time being. Thanks JonoW and gnarf – dotty Feb 19 '10 at 10:44

There's a jQuery plugin for that here:

http://code.google.com/p/jquery-json/

share|improve this answer

I decided to use the json2 library and I got an error about “cyclic data structures”.

I got it solved by telling json2 how to convert my complex object. Not only it works now but also I have included only the fields I need. Here is how I did it:

OBJ.prototype.toJSON = function (key) {
       var returnObj = new Object();
       returnObj.devid = this.devid;
       returnObj.name = this.name;
       returnObj.speed = this.speed;
       returnObj.status = this.status;
       return returnObj;
   }
share|improve this answer

I made it that way:

if I have:

var jsonArg1 = new Object();
    jsonArg1.name = 'calc this';
    jsonArg1.value = 3.1415;
var jsonArg2 = new Object();
    jsonArg2.name = 'calc this again';
    jsonArg2.value = 2.73;

var pluginArrayArg = new Array();
    pluginArrayArg.push(jsonArg1);
    pluginArrayArg.push(jsonArg2);

to convert pluginArrayArg (which is pure javascript array) into JSON array:

var jsonArray = JSON.parse(JSON.stringify(pluginArrayArg))
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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