我有一个配置文件脚手架(以及使用 Devise 创建的用户),每个用户都有一个配置文件,并希望显示来自我的 application.html.erb 的单个用户配置文件的链接。
问题是,这段代码在 /views/profiles/index.html.erb 中有效,但在 /layouts/application.html.erb 中无效
<td><%= link_to 'Show', profile %></td>
<td><%= link_to 'Edit', edit_profile_path(profile) %></td>
我错过了什么?