facebook twitter hatena line email

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

提供: 初心者エンジニアの簡易メモ
移動: 案内検索
(ページの作成:「==actionごとにtitleを変更== app/views/layouts/application.html.erb <title><%= !@title.nil? ? @title : "Typetoon" %></title> def index @title = "title1" end」)
 
(actionごとにtitleを変更)
行3: 行3:
 
  <title><%= !@title.nil? ? @title : "Typetoon" %></title>
 
  <title><%= !@title.nil? ? @title : "Typetoon" %></title>
  
def index
+
test_controller.rb
 +
def index
 
   @title = "title1"
 
   @title = "title1"
end
+
end

2017年11月17日 (金) 09:08時点における版

actionごとにtitleを変更

app/views/layouts/application.html.erb

<title><%= !@title.nil? ? @title : "Typetoon" %></title>

test_controller.rb

def index
  @title = "title1"
end