Rails 4/Bootstrap 3:如何在不同的页面上显示不同的导航栏? [英] Rails 4 / Bootstrap 3: how to display a different navigation bar on different pages?

查看:24
本文介绍了Rails 4/Bootstrap 3:如何在不同的页面上显示不同的导航栏?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

这是我们使用 Bootstrap 3 组件制作的 Rails 4 应用的 _header.html.erb:

Here is the _header.html.erb of our Rails 4 app, made with Bootstrap 3 components:

<header class="navbar navbar-fixed-top navbar-inverse">
  <div class="container">
    <nav>
      <div class="col-xs-4">
        <%= link_to "APP NAME", root_path, id: "logo" %>
      </div>
      <div class="col-xs-4 text-center">
        <ul class="nav navbar-nav navbar-center">
          <li><%= link_to "Features",   features_path %></li>
          <li><%= link_to "Pricing",   pricing_path %></li>
          <li><%= link_to "Blog", '#' %></li>
        </ul>
      </div>
      <div class="col-xs-4">
        <ul class="nav navbar-nav navbar-right">
          <% if current_user.try(:admin?) %>
            <li><%= link_to "Users", users_path %></li>
          <% end %>
          <% if logged_in? %>
            <li><%= link_to "Dashboard", current_user %></li>
            <li><%= link_to "Settings", current_user %></li>
            <li><%= link_to "Log out", logout_path, method: "delete" %></li>
        <% else %>
          <li><%= link_to "Log in", login_path %></li>
          <li><%= link_to "Sign up", signup_path %></li>
        <% end %>
        </ul>
      </div>
    </nav>
  </div>
</header>

如您所见,这有条件地显示一个导航栏,具体取决于当前用户是注销、登录还是以管理员身份登录.

As you can see, this conditionally displays a navigation bar, depending on whether the current user is logged out, logged in or logged in as admin.

但是,我们想知道如何在不同的页面上显示不同的导航栏.

However, we are wondering how we could display a different navigation bar on different pages.

例如,在所有公共页面(主页、功能、定价、博客、帮助等)上,我们希望显示 FeaturesPricingBlog 链接(无论用户是否登录),但在应用程序的内页(仪表板、设置等)上,我们希望删除这些链接.

For instance, on all public pages (home, features, pricing, blog, help, etc.), we would like to display the Features, Pricing & Blog links (whether the user is logged in or not) but on the inner pages of the app (dashboard, settings, etc) we would like to remove these links.

为了让事情更清楚,我们所说的公共页面实际上是我们的static_pages,它依赖于我们的StaticPages#Controller,而内部应用页面如仪表板和设置依赖于我们的 Users#Controller.

to make things clearer, what we call the public pages are actually our static_pages, which rely on our StaticPages#Controller, while the inner app pages such as dashboard and settings rely on our Users#Controller.

我们怎样才能做到这一点?我们是否需要创建一个新的 _header.html.erb 部分?

How can we achieve this? Do we need to create a new _header.html.erb partial?

是否有特定的 Rails 方法可以做到这一点?

Is there a particular Rails way to do that?

推荐答案

您可以将导航栏的每个变体放在它自己的部分中,并利用 content_for.

You could put each variation of the navbar in it's own partial and make use of content_for.

在您的应用程序布局中,您可以有逻辑来检查是否应呈现特定导航栏,如下所示:

In your application layout you could have logic that checks if a specific navbar should be rendered, like this:

<% if content_for?(:navbar) %>
    <%= yield(:navbar) %>
<% else %>
   # code for default navbar
<% end %>

在你的视图中,你想要不同的导航栏

And inside your views, where you want the different navbars

 <% content_for :navbar do %>
      <%= render 'nav_bar_variation_one' %>
 <% end %>

 <% content_for :navbar do %>
      <%= render 'nav_bar_variation_two' %>
 <% end %>

这篇关于Rails 4/Bootstrap 3:如何在不同的页面上显示不同的导航栏?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆