7

在使用 STI 时,从与 rails 3 的 has_many 关联中获取集合时,我遇到了一些奇怪的行为。我有:

class Branch < ActiveRecord::Base
   has_many :employees, class_name: 'User::Employee'
   has_many :admins, class_name: 'User::BranchAdmin'
end

class User < ActiveRecord::Base
end

class User::Employee < User
  belongs_to :branch
end

class User::BranchAdmin < User::Employee
end

期望的行为是branch.employees返回所有员工,包括分支管理员。分支管理员似乎仅在被 访问时才在此集合下“加载” branch.admins,这是控制台的输出:

Branch.first.employees.count
=> 2

Branch.first.admins.count
=> 1

Branch.first.employees.count
=> 3

这可以在生成的 SQL 中看到,第一次:

SELECT COUNT(*) FROM "users" WHERE "users"."type" IN ('User::Employee') AND "users"."branch_id" = 1

第二次:

SELECT COUNT(*) FROM "users" WHERE "users"."type" IN ('User::Employee', 'User::BranchAdmin') AND "users"."branch_id" = 1

我可以通过指定来解决这个问题:

class Branch < ActiveRecord::Base
   has_many :employees, class_name: 'User'
   has_many :admins, class_name: 'User::BranchAdmin'
end

因为它们都是从它们的 branch_id 中找到的,但是如果我想这样做,这会在控制器中产生问题,branch.employees.build那么该类将默认为User,我必须在某处修改类型列。我现在已经解决了这个问题:

  has_many :employees, class_name: 'User::Employee', 
    finder_sql: Proc.new{
      %Q(SELECT users.* FROM users WHERE users.type IN          ('User::Employee','User::BranchAdmin') AND users.branch_id = #{id})
    },
    counter_sql: Proc.new{
      %Q(SELECT COUNT(*) FROM "users" WHERE "users"."type" IN ('User::Employee', 'User::BranchAdmin') AND "users"."branch_id" = #{id})
    }

但如果可能的话,我真的很想避免这种情况。任何人,任何想法?

编辑:

finder_sql 和 counter_sql 并没有真正为我解决这个问题,因为似乎父关联不使用它,所以organisation.employeeshas_many :employees, through: :branches将再次只包括User::Employee选择中的类。

4

4 回答 4

20

基本上,问题只存在于根据需要加载类的开发环境中。(在生产中,类被加载并保持可用。)

问题的出现是由于解释器还没有看到您第一次运行, etc. 调用时Admins的一种类型。EmployeeEmployee.find

(请注意,它稍后会使用IN ('User::Employee', 'User::BranchAdmin')

每次使用深度超过一层的模型类时都会发生这种情况,但仅限于开发模式。

子类总是自动加载其父层次结构。基类不会自动加载其子层次结构。

黑客修复:

您可以通过明确要求基类 rb 文件中的所有子类来强制在开发模式下执行正确的行为。

于 2012-11-25T13:50:28.287 回答
2

你可以使用:conditions吗?

class Branch < ActiveRecord::Base
   has_many :employees, class_name: 'User::Employee', :conditions => {:type => "User::Employee"}
   has_many :admins, class_name: 'User::BranchAdmin', :conditions => {:type => "User::BranchAdmin"}
end

这将是我的首选方法。另一种方法可能是为多态模型添加默认范围。

class User::BranchAdmin < User::Employee
  default_scope where("type = ?", name)
end
于 2012-09-20T22:04:21.667 回答
0

确实,这是 gem 早期的计划,但很快就被放弃了(在 2019 年,在 Rails 6 发布之前)。预加载已被弃用很长时间,并已在即将发布的 Zeitwerk 2.5 中删除。

在 Rails 应用程序中,您可以这样做:

# config/initializers/preload_vehicle_sti.rb
Rails.application.config.to_prepare do
  Car
  Motorbike
  Truck
end

也就是说,您只需使用to_prepare块中的常量来“预加载”。

于 2021-10-12T17:31:17.713 回答
0

Rails 6 中继续存在类似的问题。

此链接概述了问题和解决方法。它包含以下解释和代码片段:

Active Record 需要完全加载 STI 层次结构才能生成正确的 SQL。Zeitwerk 中的预加载是为此用例设计的:

通过预加载树的叶子,自动加载将在超类之后向上处理整个层次结构。

这些文件将在启动时和每次重新加载时预加载。

# config/initializers/preload_vehicle_sti.rb

autoloader = Rails.autoloaders.main
sti_leaves = %w(car motorbike truck)

sti_leaves.each do |leaf|
  autoloader.preload("#{Rails.root}/app/models/#{leaf}.rb")
end

您可能需要 aspring stop才能进行配置更改。

于 2021-10-05T15:55:17.060 回答