gpt4 book ai didi

javascript - 用ramda合并三个数组

转载 作者:行者123 更新时间:2023-11-29 16:36:19 25 4
gpt4 key购买 nike

我最近开始使用 Ramda 来处理来自 JSONAPI 的响应,我在处理复杂的关系时遇到了一些麻烦。我有一个大数组和三个较小的数组,我需要合并三个较小的数组,但是每个数组具有不同的属性。我需要一个具有这三个不同属性的数组。

例如:

const bigArray = [[...], [...], [...]] 

arrayOne = [
{
id = 1,
attributes = {...},
specialProperty1 = {...}
},
{
id = 2,
attributes = {...},
specialProperty1 = {...}
}
]

arrayTwo = [
{
id = 1,
attributes = {...},
specialProperty2 = {...}
},
{
id = 2,
attributes = {...},
specialProperty2 = {...}
}
]

arrayThree = [
{
id = 1,
attributes = {...},
specialProperty3 = {...}
},
{
id = 2,
attributes = {...},
specialProperty3 = {...}
}
]

相同的 ID 代表同一个人。即 arrayOne 中的 id 1 与 arrayTwo 中的 id 1 引用同一个人。因此,属性也是相同的。这三个数组之间的唯一区别是特殊属性。我需要合并每个特殊属性的整个对象,以便所有三个特殊属性都在具有相应 id 的对象中。

像这样:

const newArray = [
{
id = 1,
attributes = {...},
specialProperty1 = {...},
specialProperty2 = {...},
specialProperty3 = {...}
},
{
id = 2,
attributes = {...},
specialProperty1 = {...},
specialProperty2 = {...},
specialProperty3 = {...}
},
]

此外,这是在 promise.All 中返回的,因此请务必注意三个较小的数组都在一个大数组中。我认为这是最让我绊倒的,我无法弄清楚使用哪些 Ramda 方法来引用大数组中的三个数组。

最佳答案

解决这个问题的一种方法是通过每个数组的 id 属性进行索引,然后通过匹配的 id 及其内容合并每个相应的数组元素。然后最终提取外部索引对象的值。

const
arrayOne = [
{
id: 1,
attributes: {},
specialProperty1: {}
},
{
id: 2,
attributes: {},
specialProperty1: {}
}
],

arrayTwo = [
{
id: 1,
attributes: {},
specialProperty2: {}
},
{
id: 2,
attributes: {},
specialProperty2: {}
}
],

arrayThree = [
{
id: 1,
attributes: {},
specialProperty3: {}
},
{
id: 2,
attributes: {},
specialProperty3: {}
}
],

fn = R.pipe(
R.map(R.indexBy(R.prop('id'))),
R.reduce(R.mergeWith(R.merge), {}),
R.values
),

newArray = fn([arrayOne, arrayTwo, arrayThree])

console.log(newArray)
<script src="//cdnjs.cloudflare.com/ajax/libs/ramda/0.25.0/ramda.min.js"></script>

关于javascript - 用ramda合并三个数组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51217332/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com