最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - Lodash groupBy on object preserve keys - Stack Overflow

programmeradmin3浏览0评论

When using Lodash _.groupBy method on an objects keys, I want to preserve the keys.

Suppose I have the object:

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

I would like to do a transformation to get the output

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

Doing transformedFood = _.groupBy(foods, 'type') gives the following output:

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

Notice how the original keys are lost. Anyone know of an elegant way to do this, ideally in a single line lodash function?

When using Lodash _.groupBy method on an objects keys, I want to preserve the keys.

Suppose I have the object:

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

I would like to do a transformation to get the output

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

Doing transformedFood = _.groupBy(foods, 'type') gives the following output:

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

Notice how the original keys are lost. Anyone know of an elegant way to do this, ideally in a single line lodash function?

Share Improve this question asked Nov 5, 2014 at 4:29 leejt489leejt489 6156 silver badges13 bronze badges
Add a ment  | 

2 Answers 2

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

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

If you use lodash fp, don't forget the last argument accumulator.

发布评论

评论列表(0)

  1. 暂无评论