42
31

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Railsのprovideとyieldの関係

Posted at

viewでprovideヘルパーを利用することで、ここのテンプレートからレイアウト側にタイトルを引き渡すことができる。

view/home.html.erb
<% provide :title, 'タイトルの例' %>

レイアウト側からは、yield メソッドを利用することで呼び出せる。

layouts/application.html.erb
<title><%= yield(:title) || 'Rails入門' %></title>
42
31
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
42
31

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?