在Rails中,我需要一个模型,让has_many
有两个外键需要匹配才能生成列表。
例如:
Organization_Profiles
表格结构
id : int
profile_id : int
organization_id : int
协会
belongs_to: :profile
belongs_to: :organization
has_many: :notifications, foreign_keys: [:profile_id, :organization_id], dependent: :destroy
通知
表格结构
id : int
profile_id : int
organization_id : int
level : int
message : string
协会
belongs_to: :profile
belongs_to: :organization
我怎样才能完成上述目标?根据我的研究,foreign_keys: []
不存在。
答案 0 :(得分:1)
我想为我的应用程序的基本消息传递功能做类似的事情。
我有一个包含user1_id和user2_id的对话模型,并且每条消息都有一个user_id(用于发件人)和一个session_id(可以从中猜测收件人)。
理想情况下,我会写这样的东西:
has_many :conversations, foreign_key: {:user1_id, :user2_id}, dependent: :destroy
我最终重新定义了自己的方法:
class User < ApplicationRecord
after_destroy :delete_conversations
def conversations
Conversation.where('user1_id = :id OR user2_id = :id', id: id)
end
private
def delete_conversations
Conversation.where('user1_id = :id OR user2_id = :id', id: id).map(&:destroy)
end
end
答案 1 :(得分:0)
您可以在不依赖关联的Profile
命令的情况下完成此操作。我能想到的最好的方法就是“清理”&#39;采取行动解除Organization
与Organization
的关联时的关联。您可以在class Profile < ActiveRecord:Base
def method_that_disassociates_from(inputted_organization)
self.organizations.delete(inputted_organization)
self.notifications.where(organization_id: inputted_organization.id).destroy_all
end
end
中使用反向方法。
{{1}}