我是新来的轨道。
当我为用户生成脚手架时,在 products/index.html 我有这个代码
<h1>Listing users</h1>
<table>
<tr>
<th>Name</th>
</tr>
<% @users.each do |user| %>
<tr>
<td><%=h user.name %></td>
<td><%= link_to 'Show', user %></td>
<td><%= link_to 'Edit', edit_user_path(user) %></td>
<td><%= link_to 'Destroy', user, :confirm => 'Are you sure?', :method => :delete %></td>
</tr>
<% end %>
</table>
<br />
<%= link_to 'New user', new_user_path %>
-------------------------------------------------------------------------------------------------------------------------------
My doubt is in link_to tags,
<%= link_to 'Show', user %>
<%= link_to 'Edit', edit_user_path(user) %>
<%= link_to 'New user', new_user_path %>
为什么不 show_user_path(user) ?对于第一个链接“显示”,任何帮助都会受到欢迎