我需要连接三个模型。
这些模型是:
Container
Item
ItemProperty
我无法弄清楚如何找到属于容器的所有物品。每个Item都有许多与之关联的ItemProperties。在这些Item属性中,至少有一个具有包含以下数据的属性。
# id: 2164
# property_key: container_id
# property_value_integer: 1
# world_item_id: 438
# property_value_type: integer
# is_active: 1
如何根据包含
的ItemProperty找到属于容器的项目property_key: container_id
property_value_integer: 1 (this is the id of the container)
请帮助,谢谢!
现有协会:
class ItemProperty < ApplicationRecord
belongs_to :item, :class_name => 'Item', :foreign_key => 'item_id'
end
class Item < ApplicationRecord
has_many :item_properties
end
答案 0 :(得分:1)
试试这个。这里的关键点是 has_many xxx,:通过=&gt; yyy
class Container < ApplicationRecord
belongs_to :item #or has_many :items depending on your needs
has_many :item_properties, :through => :items
end
class Item < ApplicationRecord
has_many :item_properties
end
class ItemProperty < ApplicationRecord
belongs_to :item, :class_name => 'Item', :foreign_key => 'item_id'
end
然后,您可以查询所选项目属性的容器。希望它有所帮助。