我对时间戳(created_at)和today
我想显示过去 7 天的报告,包括今天。
该报告显示每天发布的所有评论的数量。
如何在下面修复我的代码?怎么回事??????
<% user_ids = User.all %>
<% commentable = User.base_class.name.to_s %>
<% check_date = Date.today - 7 %>
<% 7.times do %>
<% @comments_count = Comment.where(:deleted_at => nil, :created_at => , ??????? :user_id => user_ids, :commentable_type => commentable).count %>
<%= @comments_count.to_s %> comments posted! on <%= check_date.to_s %> <br />
<% check_date = check_date + 1 %>
<% end %>