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.
|
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. |
|||||
|
|
use
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
|
|||||||||||
|
|
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.
Resulting merged JSON object will be :
Edit: As 3nigma mentioned, if you're using jQuery you're better of using |
||||
|
|