如何设置 Rails 站点的默认时区
$ rails g migration add_timezone_to_user_profile
class AddTimeZoneToUserProfile < ActiveRecord::Migration[5.0]
def change
add_column :profiles, :time_zone, :string
end
end
执行 $ rake db:migrate
而后在 app/views/users/edit.html.erb
中添加
<%= f.input :time_zone, label: "时区" %>
注意:
在系统中时区设置,一开始设为: (GMT+08:00) Beijing
,实际应该是 value 值 Beijing
.
# app/controllers/application_controller.rb
before_action :set_timezone
def set_timezone
if current_user && current_user.profile.time_zone
Time.zone = current_user.profile.time_zone
else
Time.zone = 'Beijing'
end
end
上一篇 在用 cap 部署之后如何重启