我在find_or_create_by
has_many
关联上使用through
时遇到问题。
class Permission < ActiveRecord::Base
belongs_to :user
belongs_to :role
end
class Role < ActiveRecord::Base
# DB columns: user_id, role_id
has_many :permissions
has_many :users, :through => :permissions
end
class User
has_many :permissions
has_many :roles, :through => :permissions
end
当我在find_or_create_by
对象的roles
关联上调用User
时,Rails会抛出错误。
u = User.first
u.roles.find_or_create_by_rolename("admin")
# Rails throws the following error
# NoMethodError: undefined method `user_id=' for #<Role id: nil, rolename: nil,
# created_at: nil, updated_at: nil>
我能够通过更改我的代码解决问题,如下所示:
unless u.roles.exists?(:rolename => "admin")
u.roles << Role.find_or_create_by_rolename("admin")
end
我很想知道find_or_create_by
是否适用于has_many
through
个关联。
答案 0 :(得分:1)
它有效,但不适用于:through
。