Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm looking for a way to define and send a JSON object array. I've figured out how to define a single JSON object, turn it into a string and send it, but what about an array of this type? Probably something simple I'm overlooking...

var myColumnSetting = { "ColumnName": name,
                        "ColumnIndex": index
                    }

convert it to a string

  var myJSONText = JSON.stringify(myColumnSetting, false);
share|improve this question
Your example is an object, not an array. Regardless, JSON.stringify(something) should work fine. What is it returning? What are you expecting? – Matt May 17 '10 at 22:30

1 Answer

up vote 4 down vote accepted
var myColumnSettings = [{"ColumnName": name, "ColumnIndex", index}, {"ColumnName":othername, "ColumnIndex":otherindex}]

would be like an array of columnsetting objects. Is this what you mean?

share|improve this answer
yes, an array of columnsetting objects is what I meant. – NullReference May 18 '10 at 20:33
Excellent, glad it all worked out. – Gabriel May 18 '10 at 20:51

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.