Я столкнулся с проблемой при использовании 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
Rails выдает ошибку, когда я вызываю find_or_create_by
на roles
ассоциации User
объекта.
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
ассоциациями.