怎么写茧删除link带图标

How to write the cocoon delete link with an icon

我正在使用 rails 5、gem 'cocoon' 和 'twitter-bootstrap-rails' v.4.0.0。 我想在“删除”下方用 bootstrap 垃圾图标交换 link_to_remove_association。

<%= link_to_remove_association "Delete", f, class: 'btn btn-danger' %>
<%= link_to_remove_association, f, do %>        
 <span class="glyphicon glyphicon-trash" aria-hidden="true"></span>
<% end %>

我按照上面的方法尝试过,但是语法错误显示:

"syntax error, unexpected keyword_do_block ...nk_to_remove_association, f, do @output_buffer.safe_append='... ... ^~ syntax error, unexpected keyword_ensure, expecting end-of-input ensure ^~~~~~"

我应该怎么写才正确?

我可以解决这个问题:

<%= link_to_remove_association '<span class="glyphicon glyphicon-trash" aria-hidden="true"></span>'.html_safe, f, class: 'btn btn-danger' %>