我在设置和关联方面遇到了一些问题,我查看了有关多态关联的所有问题,但似乎没有一个与我的情况相符。
这是一个最小的工作测试:
require 'rubygems'
gem 'activerecord', '3.0.8'
require 'active_record'
require 'mysql'
ActiveRecord::Base.establish_connection(
:adapter => 'mysql',
:database => 'test_db',
:user => 'root'
)
class User < ActiveRecord::Base
belongs_to :site
end
class Site < ActiveRecord::Base
has_many :folders, :as => :parent
has_many :users
end
class Folder < ActiveRecord::Base
belongs_to :parent, :polymorphic => true
has_many :users, :through => :parent
end
p Folder.first.users
# => NameError: uninitialized constant Folder::Parent
这是我的架构:
# inimal database schema :
#
# create_table :sites do |t|
# t.string :name, :null => false
# end
#
# create_table :users do |t|
# t.string :login, :null => false
# t.integer :site_id, :null => false
# end
#
# create_table :folders do |t|
# t.string :label, :null => false
# t.string :parent_type, :null => false
# t.integer :parent_id, :null => false
# end
有没有办法让这个作为一个协会? 目前我最终用以下内容替换了用户关联:
def users
parent.users
end
但显然这阻止我将用户用作标准关联:/
编辑:文件夹的父级不能是文件夹本身,在此代码中,父级只能是一个站点(它可以是实际代码中的其他一些东西,但它的工作方式相同)。
答案 0 :(得分:1)
我认为Rails不支持has_many:通过多态关联。
在Rails 3.1 rc 1中,我在rails控制台中得到一个显式异常:
ruby-1.9.2-p180 :011 > p Folder.first.users
Folder Load (0.1ms) SELECT "folders".* FROM "folders" LIMIT 1
ActiveRecord::HasManyThroughAssociationPolymorphicThroughError: Cannot have a
has_many :through association 'Folder#users' which goes through the
polymorphic association 'Folder#parent'.