0
如何使用Rails獲取我的頁面標題? content_for
會設置它,那麼有沒有比分配給實例變量更好的方法?Rails獲得標題
如何使用Rails獲取我的頁面標題? content_for
會設置它,那麼有沒有比分配給實例變量更好的方法?Rails獲得標題
如果你使用content_for
來設置它,你可以簡單地使用content_for
來得到它。
<% content_for :title, "My Title" %>
Some time later ...
<title><%= content_for :title %></title>
...
<h1><%= content_for :title %></h1>