如何使用Rails获取页面标题? content_for
会设置它,那么有没有比将它分配给实例变量更好的方法呢?
答案 0 :(得分:1)
如果您使用content_for
进行设置,则可以使用content_for
来获取它。
<% content_for :title, "My Title" %>
Some time later ...
<title><%= content_for :title %></title>
...
<h1><%= content_for :title %></h1>