Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
医院
belongs_to :locality
地方性
has_many :hospitals
如何为医院创建一个新的Locality,请帮助
h = Hospital.new l = h.locality.new l.name = "america" l.save
代替:
l = h.locality.new
你应该做:
l = h.build_locality
在 Rails Guides 上,您可以阅读build_locality.
build_locality