0
什麼可能是錯的?任何幫助表示讚賞。組上奇怪的重複
@entries = Entry.where(:created_at => 3.day.ago.beginning_of_day..Time.now.end_of_day).group("date(created_at)").select("created_at, count(id) as tcount")
<% @entries.each_with_index do |entry, index| %>
<%= entry.created_at.strftime("%d/%m") %>
<% end %>
輸出:
16/07
16/07
18/07
19/07
它可能具有在同一天創造了兩個紀錄。 – s84
對不起,我不明白。你能舉個例子嗎? – rOrman
'16/07'是一個日期。你可以有多個具有相同日期的entires。 – s84