我有一个具有纬度、经度和日期时间属性的模型,我希望能够计算该位置的时区并为模型的每个单独实例设置它。这是我为获取时区而编写的代码,我缺少什么吗?
require 'nokogiri'
require 'open-uri'
before_validation :set_current_time_zone
def set_current_time_zone
Time.zone = find_timezone_based_on_location
end
def find_time_zone_based_on_location
url = "http://www.earthtools.org/timezone-1.1/#{self.latitude}/#{self.longitude}"
doc = Nokogiri::XML(open(url))
offset = doc.at_xpath('//offset').text().to_i
if offset == -5
"Eastern Time (US & Canada)"
....
elsif offset == -8
"Pacific Time (US & Canada)"
end
end
关于为什么没有设置正确的时间,我有什么遗漏吗?