使用current_page在HAML中激活链接?

时间:2013-04-17 11:12:29

标签: ruby-on-rails ruby haml

所以我得到了这个糟糕的代码(当链接不是根路径时,链接会消失。):

    = link_to "News", root_path, class: "active" if current_page?(root_path)

当current_page为root_path时,我想建立链接类.active。

试图找到Rails方式

1 个答案:

答案 0 :(得分:5)

class的选项括在括号

= link_to "News", root_path, class: ("active" if current_page?(root_path))