这是我的辅助方法:
def title(page_title = "RecruitTalk | Tell Your Story")
page_title = "#{current_user.try(:name) || current_user.try(:email)} | RecruitTalk" if user_signed_in? && current_user.athlete?
content_for(:title) { page_title }
end
这是我在布局文件中的调用方式:
<title><%= yield(:title) %></title>
这是我在视图中设置它的方式
<% title "Account Features" %>
当我刷新页面时,没有页面标题呈现......不知道我在这里做错了什么