我在任务和优先级之间建立了简单的一对多关系。
class Task < ActiveRecord::Base
attr_accessible :subject, :body, :priority_id, :company_id, :status_id, :user_ids
has_and_belongs_to_many :users
belongs_to :priority
belongs_to :company
belongs_to :status
end
class Priority < ActiveRecord::Base
attr_accessible :name
has_many :tasks
end
从我的任务/show.html.erb 视图
<%= @task.priority.name %>
这行得通。
但是在我的任务/index.html.erb
<% @tasks.each do |task| %>
<tr>
<td><%= task.subject %></td>
<td><%= task.body %></td>
<td><%= task.priority.name %></td>
<td><%= link_to 'Show', task %></td>
<td><%= link_to 'Edit', edit_task_path(task) %></td>
<td><%= link_to 'Destroy', task, confirm: 'Are you sure?', method: :delete %></td>
</tr>
<% end %>
对 task.priority.name 的调用不起作用。
它抛出一个 NoMethodError。
我猜这是一个非常愚蠢的新手错误,但我一生都无法弄清楚。它会假设 Active Record 的魔法会过滤成这样的样子。