在资源的所有路由上处于活动状态

时间:2014-03-08 14:51:54

标签: ruby-on-rails

我使用link_to_active gem根据当前网址添加“活动”类。我的要求是,例如:

学生资源有:

/students
/students/new
/students/id
/students/id/edit

我对link_to_active的使用:是

<%= link_to "Students", students_path, class: "list-group-item", active_on: students_path%>

很明显,students_path只与/学生一致,但如果我想在访问上述后续链接时保持此链接有效,该怎么办?我该怎么做?

1 个答案:

答案 0 :(得分:2)

你看看这个gem https://github.com/comfy/active_link_to,它可以匹配控制器级别。