Rails: HasManyThroughAssociationNotFoundError

后端 未结 3 1860
面向向阳花
面向向阳花 2020-12-23 16:36

I have problems with getting a has_many through association to work.

I keep getting this exception:

Article.find(1).warehouses.build
Act         


        
3条回答
  •  醉话见心
    2020-12-23 17:10

    @Meekohi This means that you have no Entry model. I just received the error message myself, so wanted to point it out (can't post it as a comment due to low reputation).

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

    Simply run

    rails g model Entry
    

提交回复
热议问题