facebook twitter hatena line email

「Ruby/rails/titleを追加」の版間の差分

提供: 初心者エンジニアの簡易メモ
移動: 案内検索
(actionごとにtitleを変更)
(actionごとにtitleを変更)
行5: 行5:
 
test_controller.rb
 
test_controller.rb
 
  def index
 
  def index
   @title = "title1"
+
   @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