gpt4 book ai didi

javascript - Lodash groupBy 在对象上保留键

转载 作者:数据小太阳 更新时间:2023-10-29 04:40:27 26 4
gpt4 key购买 nike

在对象键上使用 Lodash _.groupBy 方法时,我想保留键。

假设我有对象:

foods = {
apple: {
type: 'fruit',
value: 0
},
banana: {
type: 'fruit',
value: 1
},
broccoli: {
type: 'vegetable',
value: 2
}
}

我想做一个转换来得到输出

transformedFood = {
fruit: {
apple: {
type: 'fruit',
value: 0
},
banana: {
type: 'fruit',
value: 1
}
},
vegetable: {
broccoli: {
type: 'vegetable',
value: 2
}
}
}

执行 transformedFood = _.groupBy(foods, 'type') 会得到以下输出:

transformedFood = {
fruit: {
{
type: 'fruit',
value: 0
},
{
type: 'fruit',
value: 1
}
},
vegetable: {
{
type: 'vegetable',
value: 2
}
}
}

注意原始 key 是如何丢失的。任何人都知道一种优雅的方式来做到这一点,最好是在单行 lodash 函数中?

最佳答案

var transformedFood = _.transform(foods, function(result, item, name){  
result[item.type] = result[item.type] || {};
result[item.type][name] = item;
});

http://jsbin.com/purenogija/1/edit?js,console

关于javascript - Lodash groupBy 在对象上保留键,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26749704/

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