DDR爱好者之家 Design By 杰米
前言
相信大家都知道在通常情况下,在Node.js中我们可以通过underscore的extend或者lodash的merge来合并两个对象,但是对于像下面这种复杂的对象,要如何来应对呢?下面来一起学习学习吧。
Node.js合并两个复杂对象
例如我有以下两个object:
var obj1 = { "name" : "myname", "status" : 0, "profile": { "sex":"m", "isactive" : true}, "strarr":["one", "three"], "objarray": [ { "id": 1, "email": "a1@me.com", "isactive":true }, { "id": 2, "email": "a2@me.com", "isactive":false } ] }; var obj2 = { "name" : "myname", "status" : 1, "newfield": 1, "profile": { "isactive" : false, "city": "new York"}, "strarr":["two"], "objarray": [ { "id": 1, "isactive":false }, { "id": 2, "email": "a2modified@me.com" }, { "id": 3, "email": "a3new@me.com", "isactive" : true } ] };
希望合并之后的结果输出成下面这样:
{ name: 'myname', status: 1, profile: { sex: 'm', isactive: false, city: 'new York' }, strarr: [ 'one', 'three', 'two' ], objarray: [ { id: 1, email: 'a1@me.com', isactive: false }, { id: 2, email: 'a2modified@me.com', isactive: false }, { id: 3, email: 'a3new@me.com', isactive: true } ], newfield: 1 }
通过underscore或者lodash现有的方法我们无法实现上述结果,那只能自己写代码来实现了。
function mergeObjs(def, obj) { if (!obj) { return def; } else if (!def) { return obj; } for (var i in obj) { // if its an object if (obj[i] != null && obj[i].constructor == Object) { def[i] = mergeObjs(def[i], obj[i]); } // if its an array, simple values need to be joined. Object values need to be remerged. else if(obj[i] != null && (obj[i] instanceof Array) && obj[i].length > 0) { // test to see if the first element is an object or not so we know the type of array we're dealing with. if(obj[i][0].constructor == Object) { var newobjs = []; // create an index of all the existing object IDs for quick access. There is no way to know how many items will be in the arrays. var objids = {} for(var x= 0, l= def[i].length ; x < l; x++ ) { objids[def[i][x].id] = x; } // now walk through the objects in the new array // if the ID exists, then merge the objects. // if the ID does not exist, push to the end of the def array for(var x= 0, l= obj[i].length; x < l; x++) { var newobj = obj[i][x]; if(objids[newobj.id] !== undefined) { def[i][x] = mergeObjs(def[i][x],newobj); } else { newobjs.push(newobj); } } for(var x= 0, l = newobjs.length; x<l; x++) { def[i].push(newobjs[x]); } } else { for(var x=0; x < obj[i].length; x++) { var idxObj = obj[i][x]; if(def[i].indexOf(idxObj) === -1) { def[i].push(idxObj); } } } } else { def[i] = obj[i]; } } return def;}
将上述代码稍作改进,我们可以实现在合并过程中将Number类型的值自动相加。
function merge(def, obj) { if (!obj) { return def; } else if (!def) { return obj; } for (var i in obj) { // if its an object if (obj[i] != null && obj[i].constructor == Object) { def[i] = merge(def[i], obj[i]); } // if its an array, simple values need to be joined. Object values need to be re-merged. else if(obj[i] != null && (obj[i] instanceof Array) && obj[i].length > 0) { // test to see if the first element is an object or not so we know the type of array we're dealing with. if(obj[i][0].constructor == Object) { var newobjs = []; // create an index of all the existing object IDs for quick access. There is no way to know how many items will be in the arrays. var objids = {} for(var x= 0, l= def[i].length ; x < l; x++ ) { objids[def[i][x].id] = x; } // now walk through the objects in the new array // if the ID exists, then merge the objects. // if the ID does not exist, push to the end of the def array for(var x= 0, l= obj[i].length; x < l; x++) { var newobj = obj[i][x]; if(objids[newobj.id] !== undefined) { def[i][x] = merge(def[i][x],newobj); } else { newobjs.push(newobj); } } for(var x= 0, l = newobjs.length; x<l; x++) { def[i].push(newobjs[x]); } } else { for(var x=0; x < obj[i].length; x++) { var idxObj = obj[i][x]; if(def[i].indexOf(idxObj) === -1) { def[i].push(idxObj); } } } } else { if (isNaN(obj[i]) || i.indexOf('_key') > -1){ def[i] = obj[i]; } else{ def[i] += obj[i]; } } } return def; }
例如有以下两个对象:
var data1 = { "_id" : "577327c544bd90be508b46cc", "channelId_info" : [ { "channelId_key" : "0", "secondLevel_group" : [ { "secondLevel_key" : "568cc36c44bd90625a045c60", "sender_group" : [ { "sender_key" : "577327c544bd90be508b46cd", "sender_sum" : 40.0 } ], "senders_sum" : 40.0 } ], "channelId_sum" : 40.0 } ], "car_sum" : 40.0 }; var data2 = { "_id" : "577327c544bd90be508b46cc", "channelId_info" : [ { "channelId_key" : "0", "secondLevel_group" : [ { "secondLevel_key" : "568cc36c44bd90625a045c60", "sender_group" : [ { "sender_key" : "577327c544bd90be508b46cd", "sender_sum" : 20.0 }, { "sender_key" : "5710bcc7e66620fd4bc0914f", "sender_sum" : 5.0 } ], "senders_sum" : 25.0 }, { "secondLevel_key" : "55fbeb4744bd9090708b4567", "sender_group" : [ { "sender_key" : "5670f993a2f5dbf12e73b763", "sender_sum" : 10.0 } ], "senders_sum" : 10.0 } ], "channelId_sum" : 35.0 }, { "channelId_key" : "1", "secondLevel_group" : [ { "secondLevel_key" : "568cc36c44bd90625a045c60", "sender_group" : [ { "sender_key" : "577327c544bd90be508b46cd", "sender_sum" : 20.0 } ], "senders_sum" : 20.0 } ], "channelId_sum" : 20.0 } ], "car_sum" : 55.0 };
合并之后的结果如下:
{ "_id": "577327c544bd90be508b46cc", "channelId_info": [ { "channelId_key": "0", "secondLevel_group": [ { "secondLevel_key": "568cc36c44bd90625a045c60", "sender_group": [ { "sender_key": "577327c544bd90be508b46cd", "sender_sum": 60 }, { "sender_key": "5710bcc7e66620fd4bc0914f", "sender_sum": 5 } ], "senders_sum": 65 }, { "secondLevel_key": "55fbeb4744bd9090708b4567", "sender_group": [ { "sender_key": "5670f993a2f5dbf12e73b763", "sender_sum": 10 } ], "senders_sum": 10 } ], "channelId_sum": 75 }, { "channelId_key": "1", "secondLevel_group": [ { "secondLevel_key": "568cc36c44bd90625a045c60", "sender_group": [ { "sender_key": "577327c544bd90be508b46cd", "sender_sum": 20 } ], "senders_sum": 20 } ], "channelId_sum": 20 } ], "car_sum": 95 }
总结
以上就是这篇文章的全部内容了,文中提到的上述代码在日常工作中很有用,值得大家收藏!希望本文的内容对大家的学习或者工作能带来一定的帮助。
DDR爱好者之家 Design By 杰米
广告合作:本站广告合作请联系QQ:858582 申请时备注:广告合作(否则不回)
免责声明:本站资源来自互联网收集,仅供用于学习和交流,请遵循相关法律法规,本站一切资源不代表本站立场,如有侵权、后门、不妥请联系本站删除!
免责声明:本站资源来自互联网收集,仅供用于学习和交流,请遵循相关法律法规,本站一切资源不代表本站立场,如有侵权、后门、不妥请联系本站删除!
DDR爱好者之家 Design By 杰米
暂无评论...
P70系列延期,华为新旗舰将在下月发布
3月20日消息,近期博主@数码闲聊站 透露,原定三月份发布的华为新旗舰P70系列延期发布,预计4月份上市。
而博主@定焦数码 爆料,华为的P70系列在定位上已经超过了Mate60,成为了重要的旗舰系列之一。它肩负着重返影像领域顶尖的使命。那么这次P70会带来哪些令人惊艳的创新呢?
根据目前爆料的消息来看,华为P70系列将推出三个版本,其中P70和P70 Pro采用了三角形的摄像头模组设计,而P70 Art则采用了与上一代P60 Art相似的不规则形状设计。这样的外观是否好看见仁见智,但辨识度绝对拉满。
更新日志
2024年11月28日
2024年11月28日
- 凤飞飞《我们的主题曲》飞跃制作[正版原抓WAV+CUE]
- 刘嘉亮《亮情歌2》[WAV+CUE][1G]
- 红馆40·谭咏麟《歌者恋歌浓情30年演唱会》3CD[低速原抓WAV+CUE][1.8G]
- 刘纬武《睡眠宝宝竖琴童谣 吉卜力工作室 白噪音安抚》[320K/MP3][193.25MB]
- 【轻音乐】曼托凡尼乐团《精选辑》2CD.1998[FLAC+CUE整轨]
- 邝美云《心中有爱》1989年香港DMIJP版1MTO东芝首版[WAV+CUE]
- 群星《情叹-发烧女声DSD》天籁女声发烧碟[WAV+CUE]
- 刘纬武《睡眠宝宝竖琴童谣 吉卜力工作室 白噪音安抚》[FLAC/分轨][748.03MB]
- 理想混蛋《Origin Sessions》[320K/MP3][37.47MB]
- 公馆青少年《我其实一点都不酷》[320K/MP3][78.78MB]
- 群星《情叹-发烧男声DSD》最值得珍藏的完美男声[WAV+CUE]
- 群星《国韵飘香·贵妃醉酒HQCD黑胶王》2CD[WAV]
- 卫兰《DAUGHTER》【低速原抓WAV+CUE】
- 公馆青少年《我其实一点都不酷》[FLAC/分轨][398.22MB]
- ZWEI《迟暮的花 (Explicit)》[320K/MP3][57.16MB]