我正在尝试通过这种方法根据 ROR 中的某些字段获取记录
@indivisuals = Profile.find_by_manager_id(current_user.account.id)
但是当我尝试迭代它时,它会显示一些错误。
undefined method each' for undefined method each' for #<Profile:0x8383680>
相关代码:
<% if @indivisuals %>
<% @indivisuals.each do |profile| %>
<li><a href="accounts/show/<%=h profile.account_id %>" style="padding-left:10px;"><%=h profile.full_name %></a> <a href="accounts/edit/<%=h profile.account_id %>" style="padding-left:10px;">Edit</a> <a href="#" style="padding-left:10px;">Delete</a></li>
<% end %>
请让我知道我做错了什么。