我的项目遇到了一个非常奇怪的问题。我有 2 个模型,一个是 Link,另一个是 Category。我有一个索引视图,其中应列出所有链接以及相应的类别名称。运行服务器并尝试使用时
<%= link.category.name %>
我收到一个错误页面,内容如下:
undefined method `name' for nil:NilClass
但是当我打开控制台并写下:
link = Link.find(1) #there is currently only one link
link.category.name
它返回正确的类别名称。
这是我的模型和 schema.rb:
class Link < ActiveRecord::Base
attr_accessible :category_id, :description, :title, :url, :visible
belongs_to :category
scope :visible, lambda { where(visible: true) }
end
.
class Category < ActiveRecord::Base
attr_accessible :name
has_many :links
end
.
ActiveRecord::Schema.define(:version => 20130420070717) do
create_table "categories", :force => true do |t|
t.string "name"
t.datetime "created_at", :null => false
t.datetime "updated_at", :null => false
end
add_index "categories", ["id"], :name => "index_categories_on_id"
create_table "links", :force => true do |t|
t.string "title"
t.text "description"
t.string "url"
t.integer "category_id"
t.boolean "visible"
t.datetime "created_at", :null => false
t.datetime "updated_at", :null => false
end
add_index "links", ["category_id"], :name => "index_links_on_category_id"
add_index "links", ["id"], :name => "index_links_on_id"
end
这怎么可能发生?非常感谢您的帮助!