简体   繁体   English

如何使用 ramda 库组合两个数组?

[英]How to combine two array using ramda library?

I have two array as below我有两个数组如下

const l1 = [ {"a": 1, "a1": 2}, {"b": 3, "b1": 4}, {"c": 5, "c1": 6} ];
const l2 = [ {"d": 2}, {"e": 2}, {"f": 2} ];

How can I use ramda library to combine these two and get result like我如何使用 ramda 库将这两者结合起来并得到类似的结果

[ {"a": 1, "a1": 2, "d": 2}, {"a": 1, "a1": 2, "e": 2}, {"a": 1, "a1": 2, "f": 2}, 
{"b": 3, "b1": 4, "d": 2}, {"b": 3, "b1": 4, "e": 2}, {"b": 3, "b1": 4, "f": 2}, 
{"c": 5, "c1": 6, "d": 2}, {"c": 5, "c1": 6, "e": 2}, {"c": 5, "c1": 6, "f": 2} ]

I used我用了

R.map(R.xprod(__, l2, l1)

But not working since i got object inside array.但由于我在数组中获取了对象,因此无法正常工作。

Thanks in advance.提前致谢。

To get a Cartesian product of two arrays of objects you can create a function by lifting merge:要获得两个对象数组的笛卡尔积,您可以通过提升合并创建一个函数:

 const fn = R.lift(R.merge) const l1 = [ {"a": 1, "a1": 2}, {"b": 3, "b1": 4}, {"c": 5, "c1": 6} ]; const l2 = [ {"d": 2}, {"e": 2}, {"f": 2} ]; const result = fn(l1, l2) console.log(result)
 .as-console-wrapper { max-height: 100% !important; top: 0; }
 <script src="https://cdnjs.cloudflare.com/ajax/libs/ramda/0.27.0/ramda.js" integrity="sha256-buL0byPvI/XRDFscnSc/e0q+sLA65O9y+rbF+0O/4FE=" crossorigin="anonymous"></script>

With plain Javascript, you could take cartesian product with a double nested reduce by mapping new objects.使用普通的 Javascript,您可以通过映射新对象来获取带有双嵌套 reduce 的笛卡尔积

This approach works for an arbirary count of arrays (sort of ...).这种方法适用于任意数量的数组(有点……)。

 const l1 = [{ a: 1, a1: 2 }, { b: 3, b1: 4 }, { c: 5, c1: 6 }], l2 = [{ d: 2 }, { e: 2 }, { f: 2 }], result = [l1, l2].reduce((a, b) => a.reduce((r, v) => r.concat(b.map(w => ({ ...v, ...w }))), [])); console.log(result);
 .as-console-wrapper { max-height: 100% !important; top: 0; }

If not very particular about ramda, you can do as below with one line using flatMap and map .如果对 ramda 不是很特别,您可以使用flatMapmap用一行执行以下操作。

 const l1 = [ { a: 1, a1: 2 }, { b: 3, b1: 4 }, { c: 5, c1: 6 } ]; const l2 = [{ d: 2 }, { e: 2 }, { f: 2 }]; const merged = l2.flatMap(item2 => l1.map(item1 => ({ ...item1, ...item2 }))); console.log(JSON.stringify(merged));

There is another option to merge arrays using R.reduce function还有另一个选项可以使用 R.reduce 函数合并数组

const input = {
  arr1: ['a', 'b'],
  arr2: ['c', 'd']
}

R.compose(
  R.reduce((acc, cur) => {
    return [...acc, ...cur]
  }, []),
  R.map(([key, value]) => value),
  R.toPairs
)(input)

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM