我有一个看起来像这样的片段:
<%= link "<i class='fa fa-sign-out' aria-hidden='true'></i>",to: auth_path(@conn,:delete),method: :delete,class: "btn btn-danger" %>
它是一个link.我想在文本中放置一个i元素,因此它显示一个图标而不是文本.但是,这会转义所有html字符并显示为文本.
如何让我显示为HTML?
解决方法
将内部html放在do块中:
<%= link to: auth_path(@conn,class: "btn btn-danger" do %> <i class='fa fa-sign-out' aria-hidden='true'></i> <% end %>
这是here的记录.