我试图在特定用户时区显示过去 30 天每天的展示次数。问题是,根据时区,计数并不总是相同的,我无法在查询中反映这一点。
例如,在第一天 CDT (-5) 晚上 11:00 发生两次展示,在 CDT 上午 1:00 发生一次展示。如果您使用 UTC (+0) 进行查询,您将在第二天获得所有 3 次展示,而不是第一天两次,第二天一次。两个 CDT 时间都在 UTC 的第二天登陆。
这就是我现在正在做的事情,我知道我必须在这里遗漏一些简单的东西:
start = 30.days.ago
finish = Time.now
# if the users time zone offset is less than 0 we need to make sure
# that we make it all the way to the newest data
if Time.now.in_time_zone(current_user.timezone) < 0
start += 1.day
finish += 1.day
end
(start.to_date...finish.to_date).map do |date|
# get the start of the day in the user's timezone in utc so we can properly
# query the database
day = date.to_time.in_time_zone(current_user.timezone).beginning_of_day.utc
[ (day.to_i * 1000), Impression.total_on(day) ]
end
印象模型:
class Impression < ActiveRecord::Base
def self.total_on(day)
count(conditions: [ "created_at >= ? AND created_at < ?", day, day + 24.hours ])
end
end
我一直在看其他帖子,似乎我可以让数据库为我处理很多繁重的工作,但我没有成功使用类似AT TIME ZONE
or的东西INTERVAL
。
我没有的东西似乎很脏,我知道我一定错过了一些明显的东西。任何帮助表示赞赏。