面包屑是导航元素,用于告诉用户他们在网站上的位置。
E.g。
主页>>项目>>阶段>>上传。
家庭,项目,阶段和上传是独立的控制器。
答案 0 :(得分:25)
我使用几乎相同的代码10年......首先在ASP中编写它,然后是C#,PHP,现在是Rails:
module NavigationHelper
def ensure_navigation
@navigation ||= [ { :title => 'Home', :url => '/' } ]
end
def navigation_add(title, url)
ensure_navigation << { :title => title, :url => url }
end
def render_navigation
render :partial => 'shared/navigation', :locals => { :nav => ensure_navigation }
end
end
然后,在shared/navigation.html.erb
:
<div class="history-nav">
<% nav.each do |n| %>
<%= link_to n[:title], n[:url] %>
<% end %>
<%= link_to yield(:title), request.path, :class => 'no-link' %>
</div>
您的常规视图:
<% content_for :title, 'My Page Title' %>
<% navigation_add 'My Parent Page Title', parent_page_path %>
你的模板:
<html>
<head>
<title> <%= yield :title %> </title>
</head>
<body>
...
<%= render_navigation %>
...
<%= yield %>
</body>
</html>
答案 1 :(得分:1)
可以在不使用<% content_for :title, 'My Page Title' %>
<div class="history-nav">
<% nav.each do |n| %>
<% unless n.equal? nav.last %>
<%= link_to n[:title], n[:url] %>
<% else %>
<%= n[:title] %>
<% end %>
<% end %>
</div>