如何在 RUBY 中将当前用户名显示为 Link?
How to display current username as a Link in RUBY?
<%= link_to ' ', user_path(current_user) %>
我该如何做到 <% current user %>
将当前用户显示为 link。
因为在 ruby 中,Link 中的任何内容都写为字符串,而不显示为 Ruby 的答案。
使用下面的代码将名称替换为存储用户名称的字段
<%= link_to current_user.name, user_path(current_user) %>
<%= link_to ' ', user_path(current_user) %>
我该如何做到 <% current user %>
将当前用户显示为 link。
因为在 ruby 中,Link 中的任何内容都写为字符串,而不显示为 Ruby 的答案。
使用下面的代码将名称替换为存储用户名称的字段
<%= link_to current_user.name, user_path(current_user) %>