【发布时间】:2018-11-29 10:00:00
【问题描述】:
我正在使用以下helper 将is_active css 类添加到导航栏中的活动链接。
# application_helper.rb
def active_link_to(name = nil, options = nil, html_options = nil, &block)
active_class = html_options[:active] || "is_active"
html_options.delete(:active)
html_options[:class] = "#{html_options[:class]} #{active_class}" if current_page?(options)
link_to(name, options, html_options, &block)
end
此代码完美运行。但是,我想在与控制器相关的每个页面上保留 is_active 类。例如,这是我的控制器路由:
# routes.rb
resources :catalogs, path: "s", only: [:index, :show] do
resources :products, path: "", only: [:show]
end
并想象我有 100 个不同的目录。我想在索引页面上保留is_active,而用户切换显示页面。
我的导航栏中的链接:
= active_link_to "Products", catalog_path(1), class: "navbar_link"
请注意,在上一行中,我导航到第一个目录,而不是 index 页面。
感谢您的帮助和时间!
【问题讨论】:
标签: ruby-on-rails ruby ruby-on-rails-5 haml