yield就是會被替換成樣板的地方,基本上所有的html.erb
檔案最後就是顯示在<%= yield %>
的地方,這樣做的好處是可以將網站的版型固定,只在需要出現內容的地方用yield引進來就可以了。
通常rails專案中都會有一個application.html.erb
的檔案,我們的html.erb
檔就是被引入這裡
application.html.erb
<!DOCTYPE html>
<html>
<head>
...
</head>
<body>
<div class="container">
# erb檔案就是被引入這裡
<%= yield %>
</div>
#可以指定要yield哪個區塊
<%= yield(:javascripts) %>
</body>
</html>
另外我們也可以指定要yield哪個區塊,我們可以用content_for
的方式讓content替換掉<%= yield(:javascripts) %>
:
<%= content_for :javascripts do %>
#content here
<% end %>