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 have two json objects:

http://example.com/search.json?section=saloon

and

http://example.com/search.json?section=coupe

I have been looking for a way to combine these two objects into one object.

Thanks in advance.

share|improve this question
1  
Something like this api.jquery.com/jQuery.extend? – John Kalberer Dec 12 '11 at 17:29

2 Answers

use extend

var object = $.extend({}, object1, object2);

by passing an empty object as the target(first) argument you can preserve both the objects if however you want to merge the second object you can do it like

$.extend(object1, object2);

DEMO

share|improve this answer
Oh, did not think of that. +1 – Xeon06 Dec 12 '11 at 17:32
Thanks for the swift response guys, I've got a blank page... still working on it... I am using jquery – echez Dec 12 '11 at 17:44
Here's my code: var saloon = "example.com/search.json?section=saloon";; var coupe = "example.com/search.json?section=coupe";; var obj1 = JSON.parse(saloon); var obj2 = JSON.parse(coupe); var allResults = $.extend({}, obj1, obj2) – echez Dec 12 '11 at 17:49
that is not json – 3nigma Dec 12 '11 at 17:54
have a look here you can modify it something like this but honestly i couldn't understand what you are trying to do jsfiddle.net/juBAc/3 – 3nigma Dec 12 '11 at 17:58
show 2 more comments

Well, once your JSON is fetched and parsed, you can iterate through the properties and add them to a new object. Be careful though, if there are properties with the same name they will be overwritten.

var data1 = '{"foo": 123, "test":"foo"}';
var data2 = '{"bar": 456, "test":"bar"}';

var json1 = JSON.parse(data1);
var json2 = JSON.parse(data2);

var merged = {};
for(var i in json1) {
    if (json1.hasOwnProperty(i))
        merged[i] = json1[i];
}
for(var i in json2) {
    if (json2.hasOwnProperty(i))
        merged[i] = json2[i];
}

console.log(merged);

Resulting merged JSON object will be :

{foo: 123, test: "bar", bar: 456}

DEMO

Edit: As 3nigma mentioned, if you're using jQuery you're better of using $.extend. Don't forget to first pass an empty object if you don't want to modify your existing objects.

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.