我遇到了一个has_many的问题:通过关联,我不能调用u1.UsersProfileAttributes.find_by_ProfileAttribute_name("icq")
方法,rails意味着这个方法不存在。方法u1.UsersProfileAttributes.find_by_ProfileAttribute_id(3)
正常工作。 u1是一个用户对象。我不知道这个问题是什么,因为我的协会似乎没问题。看看:
class ProfileAttribute < ActiveRecord::Base
has_many :UsersProfileAttributes
has_many :users, :through => :UsersProfileAttributes
end
class User < ActiveRecord::Base
has_many :UsersProfileAttributes
has_many :ProfileAttributes, :through => :UsersProfileAttributes
end
class UsersProfileAttribute < ActiveRecord::Base
belongs_to :user
belongs_to :ProfileAttribute
end
我的迁移文件:
class CreateProfileAttributes < ActiveRecord::Migration
def self.up
create_table :profile_attributes do |t|
t.string :name
t.integer :profile_group_id
t.timestamps
end
create_table :users_profile_attributes do |t|
t.integer :user_id
t.integer :ProfileAttribute_id
t.string :value
end
end
def self.down
drop_table :profile_attributes
drop_table :users_profile_attributes
end
end
答案 0 :(得分:2)
您需要查询ProfileAttributes,而不是UsersProfileAttributes。这应该适合您:u1.ProfileAttributes.find_by_name('icq')
u1.UsersProfileAttributes.find_by_ProfileAttribute_id(3)
有效,因为ProfileAttribute_id
是UsersProfileAttribute
的属性...所以ActiveRecord会为您构建动态查找器。
u1.UsersProfileAttributes.find_by_ProfileAttribute_name("icq")
不起作用,因为ProfileAttribute_name
不是UsersProfileAttribute
的属性。