在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
关联一起使用。 最佳答案
它可以工作,但不能与:through
一起工作。
关于ruby-on-rails - 在 `find_or_create_by` `has_many`关联上使用 `through`时出错,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/2232705/