传递时无法在索引视图中呈现类别名称
<%= post.category.name %>
到
<% @posts.each do |post| %>
错误:
undefined method `name' for nil:NilClass
然而,当通过
<%= post.category %>
我明白了
#<Category:0x007ff5c2c20b68>
在单个 Show 动作中
<%= @post.category.id %>
完美运行。可能是什么问题?谢谢