我在后台定义了一个模型,它被定义为
class TimezoneIdentifier < Sequel::Model
end
在我的前端react组件中,我需要以UTC-5 Ontario等格式显示时区。有办法做到这一点吗?
我的数据库中有来自TZInfogem的所有时区标识符。
我没有使用Rails。
您需要实现类似于ActiveSupport::TimeZone
的功能。点击此处查看#to_s
、#formatted_offset
、#utc_offset
https://github.com/rails/rails/blob/master/activesupport/lib/active_support/values/time_zone.rb#L306
或者您可以使用ActiveSupport::TimeZone
而不使用ActiveSupport
的其余部分和require 'active_support/values/time_zone'
。