在rails 3中设置页面标题的正确方法是什么?目前,我正在执行以下操作:
app / views / layouts / application.html:
<head>
<title><%= render_title %></title>
<%= csrf_meta_tag %>
app / helpers / application_helper.rb:
def render_title
return @title if defined?(@title)
"Generic Page Title"
end
app / controllers / some_controller.rb:
def show
@title = "some custom page title"
end
有另一种/更好的方法来执行上述操作吗?