44

我在让has_many through协会工作方面遇到问题。

我不断收到此异常:

Article.find(1).warehouses.build
ActiveRecord::HasManyThroughAssociationNotFoundError: Could not find the association :entries in model Article

这些是涉及的模型:

class Article < ActiveRecord::Base
  has_many :warehouses, :through => :entries
end

class Warehouse < ActiveRecord::Base
  has_many :articles, :through => :entries
end

class Entry < ActiveRecord::Base
  belongs_to :article
  belongs_to :warehouse
end

这是我的架构:

create_table "articles", :force => true do |t|
  t.string   "article_nr"
  t.string   "name"
  t.integer  "amount"
  t.string   "warehouse_nr"
  t.datetime "created_at"
  t.datetime "updated_at"
  t.integer  "unit"
end

create_table "entries", :force => true do |t|
  t.integer "warehouse_id"
  t.integer "article_id"
  t.integer "amount"
end

create_table "warehouses", :force => true do |t|
  t.string   "warehouse_nr"
  t.string   "name"
  t.integer  "utilization"
  t.datetime "created_at"
  t.datetime "updated_at"
end
4

3 回答 3

117

您需要添加

has_many :entries

对于您的每个模型,因为 :through 选项只指定了第二个关联,它应该使用它来查找另一方。

于 2009-06-03T11:07:29.080 回答
7

您需要添加

has_many :entries

对于每个模型,以及以上 has_many :through,如下所示:

class Article < ActiveRecord::Base
  has_many :entries
  has_many :warehouses, :through => :entries
end

class Warehouse < ActiveRecord::Base
  has_many :entries
  has_many :articles, :through => :entries
end

有关如何处理视图和控制器的更详细教程https://kolosek.com/rails-join-table/

于 2017-09-02T23:18:56.503 回答
2

@Meekohi 这意味着您没有 Entry 模型。我自己刚刚收到错误消息,所以想指出它(由于声誉低,无法将其作为评论发布)。

class Entry < ActiveRecord::Base
  belongs_to :article
  belongs_to :warehouse
end

只需运行

rails g model Entry
于 2015-08-11T16:48:33.390 回答