在link_to里面嵌套标签

时间:2014-12-13 16:48:06

标签: html ruby-on-rails

如何筑巢"强壮" link_to helper中的标签

这样可以吗?(html_safe)

<li><%= link_to "Logged in as <strong>#{current_user.username}</strong>".html_safe, current_user %></li>

或者还有其他方法可以做到这一点。

谢谢!

1 个答案:

答案 0 :(得分:2)

为此用例提供了link_to帮助程序的特殊形式:

<li>
  <%= link_to current_user do %>
    Logged in as <strong><%= current_user.username %></strong>
  <% end %>
</li>