在`has_many``到`关联上使用`find_or_create_by`时出错

时间:2010-02-09 21:36:07

标签: ruby-on-rails activerecord has-many

我在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个关联。

1 个答案:

答案 0 :(得分:1)

它有效,但不适用于:through