我需要创建一个表单,它将创建具有另外两个对象作为属性的对象,但是这些对象应该可以从包含这些对象模板的下拉列表中获得。
class User < ActiveRecord::Base
accepts_nested_attributes_for :adresses, :profiles
end
class Address < ActiveRecord::Base
attr_accessible :city, :country
belongs_to :user
end
class Profile < ActiveRecord::Base
attr_accessible :nickname, :password
belongs_to :user
end
棘手的部分可能是,用户没有列“address_id”或“profiles_id”,所有内容都应该转到与用户同时创建的配置文件和地址(它们与模板具有相同的属性)我可以真的需要一些帮助,不要expext完整的代码解决方案,但一些提示会很好