0

我的项目遇到了一个非常奇怪的问题。我有 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

这怎么可能发生?非常感谢您的帮助!

4

1 回答 1

0

也许我可以帮助其他面临同样问题的人。

category_id 通过从数据库查询现有类别的表单分配给链接。

<%= f.select(:category_id, @categories.collect { |c| c.name }) %>

我要分配的类别的 id = 1。从下拉菜单中选择类别后,link.category_id 为 0,它应该是 1。

更新:

我通过以下方式修复了错误的索引:

<%= f.collection_select :category_id, @categories, :id, :name, :prompt => "Select a category" %>
于 2013-04-20T09:09:21.090 回答