Ruby 按月和年分组
我有一个 (ar) 类 PressClipping,由标题和日期字段组成。
我必须这样显示它:
2011 年二月
标题1
标题2
...
2011年1月
...
执行此分组的最简单方法是什么?
I have an (ar) class PressClipping consisting of a title and a date field.
I have to display it like that:
2011 February
title1
title2
...
2011 January
...
What is the easiest way to perform this grouping?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
以下是一些 Haml 输出,显示如何使用
Enumerable#group_by
:这会为您提供一个哈希,其中每个键都是格式化的日期字符串,每个值都是该日期的剪辑数组。这里假设 Ruby 1.9,其中哈希值按插入顺序保存和迭代。如果您低于 1.8.x,则需要执行以下操作:
我想您可以像这样利用 1.8 下的
group_by
(现在只需使用纯 Ruby 来说明这一点) :Here's some Haml output showing how to iterate by using
Enumerable#group_by
:This gives you a Hash where each key is the formatted date string and each value is an array of clippings for that date. This assumes Ruby 1.9, where Hashes preserve and iterate in insertion order. If you're under 1.8.x, instead you'll need to do something like:
I suppose you could take advantage of
group_by
under 1.8 like so (just using pure Ruby now to get the point across):