Nicht die Standardnotation September 2020 ◯◯ Tag und 2020/09 / ◯◯ Wechseln Sie zu 11:05 oder 11:05
ruby 2.5.7 Rails 5.2.4.3 OS: macOS Catalina
1 gem'rails-i18n 'eingeführt 2 Bearbeiten Sie config / application.rb 3 Ändern Sie die Ansicht
Gemfile
gem 'rails-i18n'
Terminal
$ bundle install
Fügen Sie die folgenden 4 Zeilen zu config.load_defaults hinzu.
config/application.rb
class Application < Rails::Application
# Initialize configuration defaults for originally generated Rails version.
config.load_defaults 5.2
config.paths.add 'lib', eager_load: true
config.time_zone = 'Tokyo'
config.i18n.default_locale = :ja
config.i18n.load_path += Dir[Rails.root.join('my', 'locales', '*.{rb,yml}').to_s]
# 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.
end
Es ist in Ordnung, wenn Sie wie folgt schreiben.
erb:app/views/posts/show.html.erb
<%= @post.updated_at.strftime("%Y Jahr%m Monat%d Tag").to_s %>
<%= @post.updated_at.strftime("%Y/%m/%d").to_s %>
<%= @post.created_at.strftime("%Uhr%M Minuten").to_s %>
<%= @post.created_at.strftime("%H:%M").to_s %>
Wenn Sie gem'rails-i18n 'verwenden, können Sie den Fehler auch auf Japanisch schreiben. Weitere Informationen hier
Recommended Posts