将两个JavaScript对象合并为一个有意义的对象

时间:2016-08-17 04:52:36

标签: javascript jquery json

我有两个JavaScript对象:

var json1 = {
    "id": 12123,
    "category": "mobile",
    "title": "Iphone 6 64GB",
    "price": 99999,
    "quantity": 3
};

var json2 = {
    "id": 78652,
    "category": "mobile",
    "title": "Apple Iphone 6",
    "price": 90000,
    "quantity": 4
};

我想将这两个对象合并为一个有意义的对象:

json3 = {
    "category": "mobile",
    "title": "Apple Iphone 6 64GB",
    "details": [
        {
            "json1": [
                {
                    "id": 12123,
                    "price": "99999",
                    "quantity": 3
                }
            ],
            "json2": [
                {
                    "id": 78652,
                    "price": "90000",
                    "quantity": 4
                }
            ]
        }
    ]
};

0 个答案:

没有答案