私は2つのモデルを持っています。Provider と Delivery があります。モデル ノート - 彼ら (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
エラー。問題はどこだ?