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 currently trying to create an object to be used in a Json request, based on the controls on the page and their values.

I'm using the jquery map() fuction to get the keys and values out of the controls like so

var data = $("fieldset > div.section").map(function (i, e) {
    var result = {};
    result[e.children[0].id.substring(3);] = e.children[1].value;

    return result;
}).get();

This gets the data I'm after, but I end up with nested objects rather than an array, this looks like so

[{"ClientId":"123456"},{"ClientIdType":"5"},{"City":"Brisbane"},{"Sex":"10"},{"PostCode":"4064"},{"State":"QLD"}]

But what I want is something like

{"ClientId":"123456","ClientIdType":"5","City":"Brisbane","Sex":"10","PostCode":"4064","State":"QLD"}

Is there a way to do this in one go, or should I just iterate over the array again to flatten it?

share|improve this question
After substring do you have that semicolon? I wouldn't expect it to work if you did. – davin Oct 25 '11 at 5:13
If you want it in one go then you will need to declare the result before map and inside map add the values to the result object. – Ankur Oct 25 '11 at 5:18

1 Answer

up vote 4 down vote accepted

This is a case for each() not map():

var data = {};

$("fieldset > div.section").each(function (i, e) {
    data[e.children[0].id.substring(3)] = e.children[1].value;
});
share|improve this answer
Indeed, since jQuery doesn't provide $.reduce() for some reason, each is going to be your best bed. – Jordan Oct 25 '11 at 5:19
Perfect, thanks – squig Oct 25 '11 at 6:00

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.