我想添加fontawesome图标
<i class="fa fa-trash-o"></i>
取代“毁灭”
<%= link_to 'Destroy', post_path(post), method: :delete, data: { confirm: 'Are you sure?' } %>
答案 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 %>