[ , ], -6ren">
gpt4 book ai didi

ruby - 将 Ruby 数组重组为哈希

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

我有一个 Products 数组,每个产品都有一个名称和一个类别。我想生成一个散列,其中每个键都是一个类别字符串,每个元素都是该类别的产品,类似于以下内容:

{ "Apple" => [ <Golden Delicious>, <Granny Smith> ], ...
"Banana" => ...

这可能吗?

最佳答案

在 1.8.7+ 或使用 active_support(或 facets,我认为),你可以使用 group_by:

products.group_by {|prod| prod.category}

关于ruby - 将 Ruby 数组重组为哈希,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1405657/

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