这是我的助手方法:
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" %>
当我刷新页面时,没有页面标题呈现......不确定我在这里做错了什么