Rails:如何使用fontawesome图标

时间:2013-11-14 18:48:08

标签: ruby-on-rails font-awesome

我想添加fontawesome图标

<i class="fa fa-trash-o"></i> 

取代“毁灭”

<%= link_to 'Destroy', post_path(post), method: :delete, data: { confirm: 'Are you sure?' } %> 

2 个答案:

答案 0 :(得分:13)

你可以尝试

<%= link_to(
      content_tag(
        :i,
        nil, 
        class: 'fa fa-trash-o'
      ), 
      method: :delete, 
      data: { 
        confirm: 'Are you sure?' 
      } 
    ) 
%>

您可以尝试使用非:i之类的其他内容:div,如果您想要内容如<i>TEXT</i>,可以尝试使用TEXT而不是nil,希望这有助于您

答案 1 :(得分:1)

您也可以使用像这样的块

<%= link_to post_path(post), method: :delete, data: { confirm: 'Are you sure?' } do %>
    <i class="fa fa-trash-o"></i> 
<% end %>