我正在试图通过created_at发布按天分组的视频。
例如:
2012年12月5日 - 视频9 视频8 视频7
2012年12月4日 - 视频6 视频5
2012年12月3日 - 视频4 视频3 视频2 视频1
videos_controller:
def index
@title = 'Hip Hop Videos, Breaking News, Videos, And Funny Shxt | HOTDROPHIPHOP'
@description = ''
@videos = Video.all
@days = Video.where(:created_at == Time.today )
end
查看文件:
<% @days.each do |day| %>
<div class="video-date">December 4, 2012</div>
<% @videos.each do |video| %>
<% end %>
<% end %>
我还需要得到那个div来显示那天的日期。
我四处搜索,无法找到解决方案,并尝试了group_by(这似乎是最干净的),但无法让它工作。我的Rails上有点生疏,因为我已经好几个月都没碰过它了。
答案 0 :(得分:13)
你可以这样做:
@videos = Video.where(Video.arel_table[:created_at].gteq(some_date_value))
@video_days = @videos.group_by {|video| video.created_at.to_date }
其中@video_days
将是{some_date_value: [{video1}, {video2}, etc], next_date_value: [{video3}, {video4}, etc], etc...}
形式的哈希值。
由于您在.to_date
字段上呼叫created_at
,它会丢弃所有时间信息,有效地将所有内容分组。
你可以循环播放它:
<% @video_days.each do |day, videos| %>
<%= day.strftime("some format") %>
<% videos.each do |video| %>
<%= #output videos how you see fit %>
<% end %>
<% end %>
答案 1 :(得分:3)
答案 2 :(得分:1)
首先,只调用今天的视频然后浏览所有视频是没有意义的。
我会这样试试:
@videos = Video.all(:conditions => ["created_at >= ?", Date.today.at_beginning_of_month])
<% Date.today.at_beginning_of_month.upto(Date.today).each do |date| %>
<%= date %>: <%= @videos.select{|u| u.created_at == date }.title %>
<% end %>
它应该为您提供一个视频列表,其中包含实际月份的“日期:视频标题”。
答案 3 :(得分:1)
假设您正在使用mysql,视频具有属性标题 我发布以下代码来帮助您掌握逻辑(当然需要重新分解)
控制器
@videos = {}
videos = Video.order("DATE(created_at) DESC, title ASC").select("DATE(created_at) as created_at, title, id" )
videos.collect{|x| @videos[x.created_at.to_s] = @videos[x.created_at.to_s] ? @videos[x.created_at.to_s] << x.title : [x.title] }
查看强>
<% @videos.each do |posted_date, videos| %>
<div class="video-date"><%= Date.parse(posted_date.to_s).strftime("%b %d, %Y") %> </div>
<%= videos.join(", ") %>
<% end %>