gpt4 book ai didi

ruby-on-rails - 如何建立一对多的关系?

转载 作者:行者123 更新时间:2023-12-03 11:32:22 25 4
gpt4 key购买 nike

我有以下型号:

User (id, name, network_id)
Network(id, title)

我需要添加什么样的 Rails 模型 assoc 以便我可以:
@user.network.title
@network.users

谢谢

最佳答案

所以网has_many用户和用户 belongs_to网络。

只需添加一个 network_id到用户表,如果你还没有,而且因为它是 foreign_key值得索引它。
rails generate migration AddNetworkIdToUsers

class AddNetworkIdToUsers < ActiveRecord::Migration
def change
add_column :users, :network_id, :integer
add_index :users, :network_id
end
end

在网络模型中:
class Network < ActiveRecord::Base
has_many :users
end

在用户模型中:
class User < ActiveRecord::Base
belongs_to :network
end

关于ruby-on-rails - 如何建立一对多的关系?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8555082/

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