LoginSignup
7
9

More than 5 years have passed since last update.

【Rails】曜日フォーマット

Posted at

以下から落としたja.ymlを使っている場合、
https://github.com/svenfuchs/rails-i18n/blob/master/rails/locale/ja.yml
こんな感じにLocaleが設定されていると思います。

config/locales/ja.yml
ja:
  date:
    formats:
      default: ! '%Y/%m/%d'
      long: ! '%Y年%m月%d日(%a)'
      short: ! '%m/%d'

これをビューで表示させる場合、
以下のように書きます。

view
<%= l(hoge.created_at, format: :long) %>
# => 20140919()
7
9
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
7
9