我有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
错误。问题出在哪里?