アプリケーションのタイムゾーンを日本時間に設定する。
現状は..協定世界時の現在時刻(UTC/UTC+0000)表示となっている。
日本時間..日本標準時の現在時刻(JST/UTC+0900)へ変更したい。
どこを変えるのか?
root/config/application.rb
ディレクトリの中に、config.time_zone = 'Tokyo'
を記述する。
root/config/application.rb
require_relative 'boot'
require 'rails/all'
# Require the gems listed in Gemfile, including any gems
# you've limited to :test, :development, or :production.
Bundler.require(*Rails.groups)
module BoardApp
class Application < Rails::Application
# Initialize configuration defaults for originally generated Rails version.
config.load_defaults 6.0
# Settings in config/environments/* take precedence over those specified here.
# Application configuration can go into files in config/initializers
# -- all .rb files in that directory are automatically loaded after loading
# the framework and any gems in your application.
config.time_zone = 'Tokyo' #<= ここに記述する。
end
end
表示の確認
かわった!だけど、いまいち見にくい。。。
strftimeメソッドを使って表示を見やすくする。
<td><%= board.created_at.strftime('%Y年 %m月 %d日 %H時 %M分') %></td>
created_atの後にstrftime('%Y年 %m月 %d日 %H時 %M分')
メソッドを追加。
見やすくなりました!!パチパチ
でも毎回これを書くのは面倒。
root/config/initializers/ここに任意のファイルを作成
予め表示形式を定義しておくことができる。
Time::DATE_FORMATS[:datetime_jp] = '%Y年 %m月 %d日 %H時 %M分'
[:datetime_jp]
名は任意でOK!
そしてViewファイルにはこのように記述
<td><%= board.created_at.to_s(:datetime_jp) %></td>
便利...ほっこり