我正在使用以下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
页。
感谢您的帮助和时间!
答案 0 :(得分:0)
您可以尝试active_link_to gem,它确实可以满足您的需求。就像这样(未经测试)
active_link_to 'Products', catalog_path(1), active: [['catalogs'], ['index', 'show']], class_active: 'is_active'