如何在Rails 3中创建动态生成的痕迹?

时间:2010-11-26 23:46:07

标签: ruby-on-rails-3

面包屑是导航元素,用于告诉用户他们在网站上的位置。

E.g。

主页>>项目>>阶段>>上传。

家庭,项目,阶段和上传是独立的控制器。

2 个答案:

答案 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>