我有以下 json
{"result": { "a": 1, "b": 2 "c": [ { "d": 3, "e": 4 }, { "d": 3, "e": 4 } ] }}
我想把它改成这样:
{"result": [{ "a": 1, "b": 2, "d": 3, "e": 4 }, { "a": 1, "b": 2, "d": 3, "e": 4 }]}
有没有办法像这样改变JSON?
我有以下 json
{"result": { "a": 1, "b": 2 "c": [ { "d": 3, "e": 4 }, { "d": 3, "e": 4 } ] }}
我想把它改成这样:
{"result": [{ "a": 1, "b": 2, "d": 3, "e": 4 }, { "a": 1, "b": 2, "d": 3, "e": 4 }]}
有没有办法像这样改变JSON?
您可以Array.prototype.reduce()
为此使用:
var obj = {"result": { "a": 1, "b": 2, "c": [ { "d": 3, "e": 4 }, { "d": 3, "e": 4 } ] }};
var res = obj.result.c.reduce(function(res, arrObj) {
res.result.push({a:obj.result.a, b:obj.result.b, d:arrObj.d, e:arrObj.e});
return res;
}, {result:[]});
或者如果它应该更动态,那么就像这样:
var res = obj.result.c.reduce(function(res, arrObj) {
Object.keys(obj.result).forEach(function(key) {
if (typeof obj.result[key] !== 'object')
arrObj[key] = obj.result[key];
});
res.result.push(arrObj);
return res;
}, {result:[]});