如何重写删除 link_to 助手以将其与 glyphicon 图标一起使用?

How to rewrite deleting link_to helper to use it with glyphicon icon?

我想让我那毫无吸引力的 Delete link 变成一个 glyphicon 图标。如何重写以下代码?

   <%= link_to 'Delete', user_task_path(current_user, task.id),
        data: { confirm: 'Are you sure?' }, :method => :delete, remote: true %>

试试这个

    <%= link_to user_task_path(current_user, task.id), method: :delete, data: { confirm: 'Are you sure?' }, remote: true do %>
      <i class="glyphicon glyphicon-trash"></i>
    <% end %>