2012-07-09 23 views
1

我想能够为每个用户分配多个角色,然后用User.first.roles之类的东西重新获得他们,但是我迷路了,您会如何使用rails控制台进行操作?我在模型中做了什么错误?用户通过任务有很多角色

u = User.first 

User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 
=> #<User id: 18 [...]> 

1.9.3-p194 :004 > u.roles 
NameError: uninitialized constant User::Assignment 
    from [path]/ruby-1.9.3-p194/gems/activerecord-3.2.3/lib/active_record/inheritance.rb:119:in `compute_type' 
    from [path]/ruby-1.9.3-p194/gems/activerecord-3.2.3/lib/active_record/reflection.rb:172:in `klass' 
    from [path]/ruby-1.9.3-p194/gems/activerecord-3.2.3/lib/active_record/reflection.rb:385:in `block in source_reflection' 
    from [path]/ruby-1.9.3-p194/gems/activerecord-3.2.3/lib/active_record/reflection.rb:385:in `collect' 
    from [path]/ruby-1.9.3-p194/gems/activerecord-3.2.3/lib/active_record/reflection.rb:385:in `source_reflection' 
    from [path]/ruby-1.9.3-p194/gems/activerecord-3.2.3/lib/active_record/reflection.rb:508:in `check_validity!' 
    from [path]/ruby-1.9.3-p194/gems/activerecord-3.2.3/lib/active_record/associations/association.rb:26:in `initialize' 
    from [path]/ruby-1.9.3-p194/gems/activerecord-3.2.3/lib/active_record/associations/collection_association.rb:24:in `initialize' 
    from [path]/ruby-1.9.3-p194/gems/activerecord-3.2.3/lib/active_record/associations/has_many_through_association.rb:10:in `initialize' 
    from [path]/ruby-1.9.3-p194/gems/activerecord-3.2.3/lib/active_record/associations.rb:157:in `new' 
    from [path]/ruby-1.9.3-p194/gems/activerecord-3.2.3/lib/active_record/associations.rb:157:in `association' 
    from [path]/ruby-1.9.3-p194/gems/activerecord-3.2.3/lib/active_record/associations/builder/association.rb:44:in `block in define_readers' 
    from (irb):4 
    from [path]/ruby-1.9.3-p194/gems/railties-3.2.3/lib/rails/commands/console.rb:47:in `start' 
    from [path]/ruby-1.9.3-p194/gems/railties-3.2.3/lib/rails/commands/console.rb:8:in `start' 
    from [path]/ruby-1.9.3-p194/gems/railties-3.2.3/lib/rails/commands.rb:41:in `<top (required)>' 
    from script/rails:6:in `require' 
    from script/rails:6:in `<main>' 

型号/ user.rb

class User < ActiveRecord::Base 
attr_accessible :name, :email, :password, :password_confirmation, :role_id 
has_many :assignments 
has_many :roles, through: :assignments 
#more code... 
end 

型号/ role.rb

class Role < ActiveRecord::Base 
attr_accessible :name 
has_many :assignments 
has_many :users, through: :assignments 
end 

型号/ assignments.rb

class Assignments < ActiveRecord::Base 
attr_accessible :role_id, :user_id 
belongs_to :user 
belongs_to :role 
end 

schema.rb:http://cl.ly/323n1t0Q1t390y1M2S0E

回答

2

将模型文件models/assignments.rb的名称更改为models/assignment.rb,将其类名称从class Assignments更改为class Assignment。模型名称应该是单一的轨道约定。因此,当您运行u.roles时,它正在寻找“分配而不分配”。

+1

应该是“将models/assignments.rb重命名为models/assignment.rb”(将文件名删除)? – scarver2 2012-07-12 15:42:39

+1

对不起,更新它,这是一个错字。 – abhas 2012-07-12 15:48:07