我一直面临这个问题,其中完整日历在比事件数据晚8小时的时间显示我的事件。 我认为这是由于我的时区。
这是我的跟踪消息
Started GET "/events?custom_param1=something&custom_param2=somethingelse& start=1351958400&end=1352563200& authenticity_token=XEXpcBRnQuEivJ2NWjR2+OZ+Uscypalxx+hqGTIiwZA=&_=1352086291522" for 127.0.0.1 at 2012-11-05 11:31:31 +0800
Processing by EventsController#index as JSON
Parameters: {"custom_param1"=>"something", "custom_param2"=>"somethingelse", "start"=>"1351958400", "end"=>"1352563200", "authenticity_token"=>"XEXpcBRnQuEivJ2NWjR2 OZ Uscypalxx hqGTIiwZA=", "_"=>"1352086291522"}
Event Load (0.5ms) SELECT `events`.* FROM `events` WHERE (starts_at > '2012-11-04T00:00:00+08:00') AND (ends_at < '2012-11-11T00:00:00+08:00')
Completed 200 OK in 10ms (Views: 8.2ms | ActiveRecord: 0.5ms)
这里的问题是Unix中的开始时间是星期六,2012年11月3日16:00:00 GMT,当时我将它设置为2012年11月4日0.00.00。
这是我的代码
class Event < ActiveRecord::Base
scope :before, lambda {|end_time| {:conditions => ["ends_at < ?", Event.format_date(end_time)] }}
scope :after, lambda {|start_time| {:conditions => ["starts_at > ?", Event.format_date(start_time)] }}
def as_json(options = {})
{
:id => self.id,
:title => self.title,
:description => self.description || "",
:start => starts_at.rfc822,
:end => ends_at.rfc822,
:allDay => false,
:recurring => false,
:url => Rails.application.routes.url_helpers.event_path(id),
#:color => "red"
}
end
def self.format_date(date_time)
Time.at(date_time.to_i).to_time.iso8601
end
end
将ignoreTimeZone更改为true对我来说也不起作用。 如果有人可以帮助我,我将不胜感激。
也许是解析时间的问题?
答案 0 :(得分:1)
如果您传递的是UNIX时间值,则可能是以纪元(1970-01-01T00:00:00Z)为单位的UTC或毫秒。要在客户端的本地时区中将本地javascript日期对象设置为同一时间,请将UTC时间值直接传递给Date constructor。
e.g。
// if timeValue is milliseconds
var localDate = new Date(timeValue);
// if timeValue is in seconds
var localDate = new Date(timeValue * 1000);
e.g。
// For timeValue in milliseconds
new Date(1352090840000); // 2012-11-05T04:47:20Z
要将本地时间作为UTC纪元以来的UTC毫秒发回,请执行相反的操作:
var utcTimeValue = localDate.getTime();
time value返回的getTime
是自纪元以来的UTC毫秒。