0

我有2个模型。有提供者和交付者。模型注释 - 对他们来说是多态的(belongs_to)。模型提供者如下所示:

class Provider < ActiveRecord::Base
  attr_accessible :name, :site_url, :brand_ids, :note_attributes
  validates :name, presence: true

  has_one :note
  accepts_nested_attributes_for :note, allow_destroy: true
end

创建新提供者的形式呈现良好。但是当我尝试保存它时,我得到了

unknown attribute: provider_id

错误。问题出在哪里?

4

1 回答 1

1

Note 模型应该有attr_accessible :provider_id

于 2013-05-02T13:54:39.870 回答