Rails 5:STI有很多通过关联



我已经广泛搜索了解决我的情况的方法,但我找不到任何东西。

在我的应用程序中,我有一个存储有关人员的数据的Person模型:

class Person < ApplicationRecord
end

然后我有一个Trial模型。试验可以有很多人使用具有多通关联。此外,在审判中,一个人可以是被告原告。为了实现这一点,我像这样设置了我的模型:

class Trial < ApplicationRecord
has_many :trial_people
has_many :plaintiffs, class_name: 'Plaintiff', through: :trial_people, source: :person
has_many :defendants, class_name: 'Defendant', through: :trial_people, source: :person
end
class TrialPerson < ApplicationRecord
belongs_to :trial
belongs_to :person
end
class Plaintiff < Person
end
class Defendant < Person
end

然后,我使用 Select2 JQuery 插件在视图中添加每个审判的被告和原告。获取强参数中的 ID:

params.require(:trial).permit(:title, :description, :start_date, :plaintiff_ids => [], :defendant_ids => [])

这样我就可以做到以下几点:

trial.defendants
trial.plaintiffs

问题是我没有任何方法可以区分trial_people表中的这些类。我正在考虑向该表 (STI( 添加一个type列,但我不知道如何在保存 Trial 对象时自动将该类型添加到每个被告或原告。

希望了解如何实现这一目标,无论是否使用STI。

在不更改关联或架构的情况下执行此操作的一种方法是使用before_create回调。

假设您已将person_type字符串列添加到trial_people

class TrialPerson < ApplicationRecord
belongs_to :trial
belongs_to :person
before_create :set_person_type
private
def set_person_type
self.person_type = person.type
end
end

另一种方法是删除person关联并将其替换为多态triable关联。这实现了相同的最终结果,但它内置于 ActiveRecord API 中,因此不需要任何回调或额外的自定义逻辑。

# migration
class AddTriableReferenceToTrialPeople < ActiveRecord::Migration
def up
remove_reference :trial_people, :person, index: true
add_reference :trial_people, :triable, polymorphic: true
end
def down
add_reference :trial_people, :person, index: true
remove_reference :trial_people, :triable, polymorphic: true
end
end
# models
class TrialPerson < ApplicationRecord
belongs_to :trial
belongs_to :triable, polymorphic: true
end
class Person < ApplicationRecord
has_many :trial_people, as: :triable
end
class Trial < ApplicationRecord
has_many :trial_people
has_many :defendants, source: :triable, source_type: 'Defendant', through: :trial_people
has_many :plaintiffs, source: :triable, source_type: 'Plaintiff', through: :trial_people
end
class Plaintiff < Person
end
class Defendant < Person
end

这为您提供了triable_typetriable_idtrial_people表上的列,这些列在您添加到集合时自动设置

trial = Trial.create
trial.defendants << Defendant.first
trial.trial_people.first # => #<TrialPerson id: 1, trial_id: 1, triable_type: "Defendant", triable_id: 1, ... >

相关内容

  • 没有找到相关文章

最新更新