我需要按年份和月份基于created_at列对用户进行分组, User.all.group_by {| q | [q.created_at.year,q.created_at.month]}, 我正在使用密钥[年,月]获取哈希值,是否有任何方法可以对记录结果进行分组 { ye
User.all.group_by {| q | [q.created_at.year,q.created_at.month]},
我正在使用密钥[年,月]获取哈希值,是否有任何方法可以对记录结果进行分组
{ year1 =>{ month1 =>[array of records], month2=>[array]}, year2 =>{ month1 =>[array of records], month2=>[array]} }尝试以下方法:
User.all .group_by { |user| user.created_at.year } .transform_values { |users| users.group_by { |user| user.created_at.month } }