Ruby Time.zone.now.zone 错误
我的意思是,有不同的时区具有相同的名称,例如 CST(美国为 -06:00,澳大利亚为 +09:30)。因此,转换为 utc 会给阿德莱德带来错误的结果。
有什么优雅的方法来解决这个问题吗?
What I mean is that there are different timezones with the same name, like CST (-06:00 in US and +09:30 in Australia). Accordingly conversion to utc gives wrong results for Adelaide.
Any elegant way to solve this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
一个简单的方法是使用命名时区的其他术语。
例如,对于 UTC+9:30,您可以使用“澳大利亚/阿德莱德”而不是使用 CST,
请参阅:
http://api.rubyonrails.org/classes/Time.html
http://tzinfo.rubyforge.org/doc/
http://en.wikipedia.org/wiki/List_of_tz_database_time_zones
执行“gem install activesupport”,然后在你的脚本:
an easy way would be that you use the other nomenclature of naming time zones..
e.g. for UTC+9:30 intstead of using CST, you can use "Australia/Adelaide"
See:
http://api.rubyonrails.org/classes/Time.html
http://tzinfo.rubyforge.org/doc/
http://en.wikipedia.org/wiki/List_of_tz_database_time_zones
do a "gem install activesupport", and in your script: