gpt4 book ai didi

javascript - 使用 Lodash,如何将这些数据转换为所需的格式?

转载 作者:行者123 更新时间:2023-11-29 19:12:31 26 4
gpt4 key购买 nike

我是 lodash 的新手,我怀疑它可以帮助我以我想要的方式转换我的数据。我一直在阅读 lodash docs但老实说,它并没有深入,我没有看到我需要的正确操作组合。

这是我想做的:

var configs = [ { 
configId: 1,
options: [ {categoryId: 1, id: 100},
{categoryId: 2, id: 200},
{categoryId: 3, id: 300} ] },
{
configId: 2,
options: [ {categoryId: 1, id: 105},
{categoryId: 2, id: 210} ] },
{
configId: 3,
options: [ {categoryId: 2, id: 200},
{categoryId: 1, id: 165},
{categoryId: 3, id: 300} ] }
];

// I want the above to look like this:
/*
[ {categoryId: 1, ids: [100, 105, 165]},
{categoryId: 2, ids: [200, 210]},
{categoryId: 3, ids: [300]} ]
*/

这是一个 fiddle如果您想进行实验。

当我看问题时,我想我想:

  1. 合并所有的 configs 对象,这样我就有了一大堆 options 对象
  2. categoryId分组
  3. 然后我真的迷路了...我怀疑我可以在这里使用 reduce(),但我也认为我需要一个 map() 来实际生成转换后的对象。

无论如何,我一直在循环,没有取得进展,我希望有人能给我指明正确的方向。

最佳答案

使用 ES2015 语法:

_.map(
_.groupBy(_.flatMap(configs, config => config.options), 'categoryId'),
(val, key) => ({categoryId: key, ids: _.uniq(_.map(val, v => v.id)) })
)

ES5 兼容(由 Babel 生成):

_.map(
_.groupBy(
_.flatMap(configs, function (config) {
return config.options;
}),
'categoryId'),
function (val, key) {
return {
categoryId: key,
ids: _.uniq(_.map(val, function (v) {
return v.id;
}))
};
});

解释:

_.flatMap(configs, config => config.options)

从每个配置对象中获取 options 数组,将它们扁平化为单个 [{categoryId: xx, id: yy}, ...] 数组

[ {categoryId:1,id:100},
{categoryId:2,id:200},
{categoryId:3,id:300},
{categoryId:1,id:105},
{categoryId:2,id:210},
{categoryId:2,id:200},
{categoryId:1,id:165},
{categoryId:3,id:300} ]


_.groupBy(..., 'categoryId')

categoryId 在数组上方分组,如 [{xx: [categoryId: xx, id: yy}, ...]

{
1:[
{categoryId:1,id:100},
{categoryId:1,id:105},
{categoryId:1,id:165} ],
2:[
{categoryId:2,id:210},
{categoryId:2,id:200},
{categoryId:2,id:200} ],
3:[
{categoryId:3,id:300},
{categoryId:3,id:300} ] }

_.map(..., (val, key) => ({categoryId: key, ids: _.uniq(_.map(val, v => v.id)) }))

接收 val = [{xx: [categoryId: xx, id: yy}, ...], key: xx 并将它们映射到 categoryId 设置为接收到的键,ids 设置为来自分组对象的唯一 id 数组。结果是你想要的数组。

[ {
categoryId:1,
ids:[100,105,165]},
{
categoryId:2,
ids:[200,210]},
{
categoryId:3,
ids:[300]}]

关于javascript - 使用 Lodash,如何将这些数据转换为所需的格式?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37737952/

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