功能:对一个多维数组进行去重,条件是第一个参数“name”相同,第二个参数“age”相同,输出数据!
具体实现代码:
var data = [ { name: '小米', age: '23', value: 1 }, { name: '小明', age: '31', value: 2 }, { name: '小米', age: '22', value: 3 }, { name: '小花', age: '25', value: 3 }, { name: '小明', age: '31', value: 4 }, { name: '小米', age: '23', value: 4 }, ]; var uniqueByKeys = data.reduce((aList, cItem) => { var key = `${cItem.name}-${cItem.age}`; var foundIndex = aList.findIndex(item => `${item.name}-${item.age}` === key); if (foundIndex === -1) { aList.push(cItem); } else { // 如何想处理重复项,可以在这里操作 // 例如:aList[foundIndex].value = Math.max(aList[foundIndex].value, cItem.value); } return aList; }, []); console.log("输出结果:",uniqueByKeys);
输出结果:
输出结果: (4) [{…}, {…}, {…}, {…}] 0: {name: '小米', age: '23', value: 1} 1: {name: '小明', age: '31', value: 2} 2: {name: '小米', age: '22', value: 3} 3: {name: '小花', age: '25', value: 3} length: 4
上面是“js多维数组去重:条件是“key1”相同并且“key2”相同进行去重”的全面内容,想了解更多关于 js 内容,请继续关注web建站教程。
当前网址:https://ipkd.cn/webs_14423.html
workflows工作流
懂王特朗普3d漫画ComfyUI工作流
广阔的沙漠中矗立着一个生锈的巨大头盔
一幅以霓虹灯照亮的城市天际线和未来主义画
一只被水晶包围的小动物ComfyUI工作流
一幅梦幻家园comfyui工作流
城市里出现一只可爱的小生物ComfyUI工作流
一桌精致的美食,桌上几杯白葡萄酒
一位身穿金色铠甲的美丽女子守卫在寺庙外
猜你喜欢
声明:本站提供的所有资源部分来自互联网,如果有侵犯您的版权或其他权益,请发送到邮箱:admin@ipkd.cn,我们会在看到邮件的第一时间内为您处理!