我很确定该错误与TenantIdLoader
模块的实际内容无关。相反,它与ActiveSupport
依赖关系有关。
我似乎无法摆脱这个错误。从我读到的内容来看,这是因为要么ActiveRecord::Base
正在重新Company::TenantIdLoader
加载,要么正在重新加载,并且某种程度上没有进行通信。请帮助!我真的很希望能够升级到Rails 4.2。
编辑
现在,我了解到这是因为我正在引用Tenant
正在自动重新加载的内容。我需要能够实际引用该类,所以有人知道如何解决这个问题吗?
config / application.rb
config.autoload_paths += %W( #{config.root}/lib/company )
config / initializers / company.rb
ActionMailer::Base.send(:include, Company::TenantIdLoader)
lib / company / tenant_id_loader.rb
module Company
module TenantIdLoader
extend ActiveSupport::Concern
included do
cattr_accessor :tenant_dependency
self.tenant_dependency = {}
after_initialize do
self.tenant_id = Tenant.active.id if self.class.tenant_dependent? and self.new_record? and Tenant.active.present? and !Tenant.active.zero?
end
end
# class methods to be mixed in
module ClassMethods
# returns true if this model's table has a tenant_id
def tenant_dependent?
self.tenant_dependency[self.table_name] ||= self.column_names.include?('tenant_id')
end
end
end
end