在 Rails 中,我可以在另一個模型的模型上設置 has_many 關係嗎? (In Rails, can I set a has_many relation on a model from another model?)


問題描述

在 Rails 中,我可以在另一個模型的模型上設置 has_many 關係嗎? (In Rails, can I set a has_many relation on a model from another model?)

Is there any way I can set both halves of a belongs_to/has_many relation in just one of the models? So I want do something like:

class A < ActiveRecord::Base
end

class B < ActiveRecord::Base
  belongs_to :a
  A.has_many :b
end

Obviously this doesn't work (or I would have used it) but I hope it explains what I mean...


參考解法

方法 1:

I'm not sure why you'd want to, but assuming you have a great reason...

has_many is just a class method defined in ActiveRecord::Base so calling A.has_many :b should work.

You might have issues however in development with loading order. If you load up the example you gave and called a = A.new, the class B has never been loaded, so a has no idea that A has many B. In production, where the entire class list is loaded on start, this won't be  a problem. In development you can get around it by using a require statement, however, you are then coupling the two files together pretty strongly.

I haven't tried it, but in theory, that's the only thing I can think of that is preventing your setup above from working. 

(by Kevin Hughesjesse reiss)

參考文件

  1. In Rails, can I set a has_many relation on a model from another model? (CC BY-SA 3.0/4.0)

#has-many #ActiveRecord #belongs-to #ruby-on-rails #ruby






相關問題

Ruby on Rails - Has_many,批量分配問題 (Ruby on Rails - Has_many, Mass Assignment issue)

如何在 hasMany 關聯中使用 CakePHP 2 查找? (How to use CakePHP 2 find in a hasMany association?)

模型沒有像我認為的那樣連接 (Models not connecting as I think they should be)

CakePhp find không tìm nạp hasMany mối quan hệ (CakePhp find doesn't fetch hasMany relationships)

創建關聯後,控制器中的 Ruby on rails NoMethodError (Ruby on rails NoMethodError in controller after create an association)

是否可以以兩種不同的方式關聯模型? (Is it possible to associate models in two different ways?)

在 DetailView yii2 中顯示 HAS_MANY 關係數據 (Display HAS_MANY relation data in DetailView yii2)

Rails - 檢查 has_many 關聯中是否存在記錄 (Rails - check if record exists in has_many association)

在 Rails 中,我可以在另一個模型的模型上設置 has_many 關係嗎? (In Rails, can I set a has_many relation on a model from another model?)

從大於 0 開始計數器緩存 (Starting a counter cache from greater than 0)

如何使用 has_many 關聯在 Rails 中排序? (How to sort in rails with has_many association?)

如何將 ActiveModel::Serializer :has_many 關聯的密鑰格式(即駝峰式)指定為一次性選項(不是全局配置)? (How to specify the key format (i.e. camelcase) for an ActiveModel::Serializer :has_many association as a one-off option (not global config)?)







留言討論