2

我有

class CreateRoles < ActiveRecord::Migration 
  def change
    create_table :roles do |t|
      t.string :name

      t.timestamps
    end
  end
end

class Role < ActiveRecord::Base
  attr_accessible :name
  has_many :members, :posts
end

class Post < ActiveRecord::Base
  attr_accessible :content, :title, :role_id
  belongs_to :role
end

class Member < ActiveRecord::Base
  devise :database_authenticatable, :registerable,
         :recoverable, :rememberable, :trackable, :validatable, :lockable

  attr_accessible :role_id, :first_name, :last_name, :email, :password, :password_confirmation, :remember_me
end

在 Rails 控制台或 seed.rb 中,我输入

Role.create(name: 'guest')

并得到错误

TypeError: can't convert Symbol into Integer
    from /usr/local/rvm/gems/ruby-1.9.3-p194/gems/activerecord-3.2.8/lib/active_record/associations/builder/collection_association.rb:35:in `[]'
    from /usr/local/rvm/gems/ruby-1.9.3-p194/gems/activerecord-3.2.8/lib/active_record/associations/builder/collection_association.rb:35:in `wrap_block_extension'
    from /usr/local/rvm/gems/ruby-1.9.3-p194/gems/activerecord-3.2.8/lib/active_record/associations/builder/collection_association.rb:22:in `build'
    from /usr/local/rvm/gems/ruby-1.9.3-p194/gems/activerecord-3.2.8/lib/active_record/autosave_association.rb:139:in `build'
    from /usr/local/rvm/gems/ruby-1.9.3-p194/gems/activerecord-3.2.8/lib/active_record/associations/builder/has_many.rb:10:in `build'
    from /usr/local/rvm/gems/ruby-1.9.3-p194/gems/activerecord-3.2.8/lib/active_record/associations/builder/collection_association.rb:13:in `build'
    from /usr/local/rvm/gems/ruby-1.9.3-p194/gems/activerecord-3.2.8/lib/active_record/associations.rb:1195:in `has_many'
    from /Users/ataylo9/Dropbox/Developer/hamsterdam/app/models/role.rb:3:in `<class:Role>'
    from /Users/ataylo9/Dropbox/Developer/hamsterdam/app/models/role.rb:1:in `<top (required)>'
    from /usr/local/rvm/gems/ruby-1.9.3-p194/gems/activesupport-3.2.8/lib/active_support/dependencies.rb:469:in `load'
    from /usr/local/rvm/gems/ruby-1.9.3-p194/gems/activesupport-3.2.8/lib/active_support/dependencies.rb:469:in `block in load_file'
    from /usr/local/rvm/gems/ruby-1.9.3-p194/gems/activesupport-3.2.8/lib/active_support/dependencies.rb:639:in `new_constants_in'
    from /usr/local/rvm/gems/ruby-1.9.3-p194/gems/activesupport-3.2.8/lib/active_support/dependencies.rb:468:in `load_file'
    from /usr/local/rvm/gems/ruby-1.9.3-p194/gems/activesupport-3.2.8/lib/active_support/dependencies.rb:353:in `require_or_load'
    from /usr/local/rvm/gems/ruby-1.9.3-p194/gems/activesupport-3.2.8/lib/active_support/dependencies.rb:502:in `load_missing_constant'
    from /usr/local/rvm/gems/ruby-1.9.3-p194/gems/activesupport-3.2.8/lib/active_support/dependencies.rb:192:in `block in const_missing'
    from /usr/local/rvm/gems/ruby-1.9.3-p194/gems/activesupport-3.2.8/lib/active_support/dependencies.rb:190:in `each'
    from /usr/local/rvm/gems/ruby-1.9.3-p194/gems/activesupport-3.2.8/lib/active_support/dependencies.rb:190:in `const_missing'
    from (irb):1
    from /usr/local/rvm/gems/ruby-1.9.3-p194/gems/railties-3.2.8/lib/rails/commands/console.rb:47:in `start'
    from /usr/local/rvm/gems/ruby-1.9.3-p194/gems/railties-3.2.8/lib/rails/commands/console.rb:8:in `start'
    from /usr/local/rvm/gems/ruby-1.9.3-p194/gems/railties-3.2.8/lib/rails/commands.rb:41:in `<top (required)>'
    from script/rails:6:in `require'

我知道我得到了错误,因为 Rails 想要为成员和帖子建立关系,但它不应该只是让那些为零。我什至尝试在 seed.rb 中将数组显式设置为 nil,但得到了同样的错误。

我不明白什么?谢谢!

更新:添加了帖子和会员模型以供参考

4

3 回答 3

3

我用相同的模型创建了相同的项目。而我发现这种描述关系发生了那个错误。

class Role < ActiveRecord::Base
  attr_accessible :name
  has_many :members, :posts
end

我试过这个:

class Role < ActiveRecord::Base
  attr_accessible :name
  has_many :members
  has_many :posts
end

class Post < ActiveRecord::Base
  attr_accessible :name, :role_id
  belongs_to :role
end

class Member < ActiveRecord::Base
  attr_accessible :name, :role_id
  belongs_to :role
end

一切正常。我不知道为什么,但看起来 has_many :posts, :members 出现了问题。但是你可以用不同的方式写来解决这个问题。

于 2013-01-11T08:57:42.440 回答
2

jizak 的回答帮助我朝着正确的方向前进,为我自己的问题找到解决方案。起初,我试图将多个“项目”添加到单个 has_many,如上例所示:

has_many :members, :posts

我的 Rails 控制台游戏我同样的错误 - “TypeError:无法将符号转换为整数。” 所以我把它分成两条不同的线:

has_many :members
has_many :posts

现在它工作正常。

我想我想有点太聪明了,认为关联(has_many)类似于 attr_accessor/writer/reader - 可以将多个东西添加到单个 attr_x(或者在这种情况下,has_many)。Rails 不是这种情况(据我所知)——每个关联都需要自己的单独声明。

于 2013-03-28T15:15:06.223 回答
0

看起来您分配了不存在的关系(has_many :members, :posts)。你有这样的模型吗?模型有这样的关系吗?您可以发布成员和帖子模型的代码吗?

于 2013-01-10T14:15:37.240 回答