1

因此,很难找到快速的答案。我在纯控制台应用程序中使用 ActiveRecord,并且我的课程设置如下:

class Owner < ActiveRecord::Base
has_many :profiles
end

class Profile < ActiveRecord::Base
has_many :lines
belongs_to :owner
end

class Line < ActiveRecord::Base
belongs_to :profiles
end

现在通常我会做类似的事情..

Profile.create( :thing => "thing", :otherthing => "otherthing" )

AR 如何知道将此配置文件实例链接到所有者?那么数据库中已经存在的特定所有者呢?我该怎么说?我将如何一次完成所有链接?(线路,配置文件,所有者)?

4

1 回答 1

3

阅读本文以了解基础知识。http://guides.rubyonrails.org/association_basics.html

于 2012-11-04T05:54:00.250 回答