ubuntu, ror, jQuery, css, website memo
太嫩, 沒啥心得, 用來紀錄每天學的
2009年9月10日 星期四
Railscast skill (7)
in_groups_of
定量分組時在用的
<% @tasks.in_groups_of(4, false) do |row_tasks| %>
<% for task in row_tasks %>
<%= task.name %>
<% end %>
<% end %>
group_by Month
group_by 好棒, 想用啥分類就分
# tasks_controller.rb
def index
@tasks = Task.find(:all, :order => 'due_at, id', :limit => 50)
@task_months = @tasks.group_by { |t| t.due_at.beginning_of_month }
end
<% @task_months.sort.each do |month, tasks| %>
<%= month.strftime('%B') %>
<% for task in tasks %>
<%= task.name %>
due on <%= task.due_at.to_date.to_s(:long) %>
<% end %>
<% end %>
沒有留言:
張貼留言
較新的文章
較舊的文章
首頁
訂閱:
張貼留言 (Atom)
沒有留言:
張貼留言