最佳答案
在 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/controller/some _ controller. rb:
def show
@title = "some custom page title"
end
有没有其他[更好的]做上述事情的方法?