将css类添加到rails link_to helper

时间:2012-10-22 17:09:00

标签: ruby-on-rails

我正在尝试使用以下代码使用css设置rails链接的样式:

<%= link_to "Learn More", :controller => "menus", :action => "index", :class => "btn btn-inverse" %>

我希望这会创建一个如下所示的链接:

<a href="menus/" class="btn btn-inverse">Learn More</a>

相反,rails正在渲染这个 -

<a href="/menus?class=btn+btn-inverse">Learn More</a>

有没有其他人有这个问题/知道我做错了什么?我知道我可以通过手动创建锚标记而不是使用帮助程序来避免这个问题,但我想知道是否有办法将css类信息传递给帮助程序本身。我正在使用Rails 3.2.6。

谢谢!

5 个答案:

答案 0 :(得分:100)

您有语法问题。试试这个:

<%= link_to "Learn More", {controller: "menus", action: "index"}, class: "btn btn-inverse" %>

Some documentation for you to go further with the link_to Helper

他们说:

  

使用旧的参数样式时要小心,因为需要额外的文字哈希:

link_to "Articles", { :controller => "articles" }, :id => "news", :class => "article"
# => <a href="/articles" class="article" id="news">Articles</a>
     

离开哈希会给出错误的链接:

link_to "WRONG!", :controller => "articles", :id => "news", :class => "article"
# => <a href="/articles/index/news?class=article">WRONG!</a>

我建议您使用路由配置后生成的网址助手。在你的情况下:

link_to "Learn More", menus_path, :class => "btn btn-inverse"

关于帮助者的一点提醒:

# routes.rb
resources :users

# any view/controller
users_path #=> /users
edit_user_path(user) #=> /users/:id/edit
user_path(user) #=> /users/:id  (show action)
new_user_path(user) #=> /users/new

答案 1 :(得分:3)

尝试新的参数约定:

<%= link_to 'Learn More', 'menus#index', class: 'btn btn-inverse' %>

答案 2 :(得分:0)

我顺便解决了我的问题

<%= link_to image_tag("imageexamplo.png", class: 'class or id examplo css'),{controller: "user" , action: "index"}%>

答案 3 :(得分:0)

这就是我使用另一个视图引擎 HAML 解决它的方法,以防其他开发人员满足此需求

%i= link_to "Add New Blog Post", user_post_edit_new_url(current_user), :class  => "fa fa-plus-circle"

答案 4 :(得分:0)

如果链接没有必要的控制器操作/路由,则可以将nil用作占位符,并根据需要获取要应用的类

<%= link_to 'link verbiage', nil,  class: 'classes for action tag'%>