「Ruby/rails/titleを追加」の版間の差分
提供: 初心者エンジニアの簡易メモ
(→actionごとにtitleを変更) |
(→actionごとにtitleを変更) |
||
行5: | 行5: | ||
test_controller.rb | test_controller.rb | ||
def index | def index | ||
− | @title = " | + | @title = "action1" |
end | end |
2017年11月17日 (金) 09:08時点における版
actionごとにtitleを変更
app/views/layouts/application.html.erb
<title><%= !@title.nil? ? @title : "application1" %></title>
test_controller.rb
def index @title = "action1" end