私の Rails アプリでは、 に属することができる (ただし、そうである必要はありません)Users
多くのものを持つことができます。People
Organisations
要するに、これは:
Users --< People >-- Organisations
さて、どうにか人のビュー内から新しい組織を作成できるといいですね。これを試しました:
class Person < ActiveRecord::Base
attr_accessible :name, :organisation_attributes
belongs_to :user
belongs_to :organisation
accepts_nested_attributes_for :organisation
end
しかし、Organization は Person の子ではないため、機能しません。
これを実現する別の方法はありますか?
助けてくれてありがとう。