"otherthing-6ren">
gpt4 book ai didi

ruby-on-rails - ActiveRecord 如何将记录链接在一起?

转载 作者:太空宇宙 更新时间:2023-11-03 18:24:31 24 4
gpt4 key购买 nike

因此,要快速找到答案出奇地困难。我在纯控制台应用程序中使用 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 如何知道将此配置文件实例链接到所有者?数据库中已有的特定所有者怎么办?我怎么告诉它?我将如何一次完成所有链接? (线路,个人资料,所有者)?

最佳答案

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

关于ruby-on-rails - ActiveRecord 如何将记录链接在一起?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13216378/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com