1

私はレールの初心者です、

私はライアン・ベイツのビデオチュートリアルのデバイスを使用していますが、ある時点で立ち往生しています

ユーザー、役割の関係を作成しました

サインアップ ページで、既存のロールの選択オプション グループを提供する必要があります。

私のサインアップビューページで私は書いています

<%= collection_select(:user,:roles,Role.find(:all),:id,:name) %>

collection_select メソッドを正確に理解していません。間違っている可能性があることを親切に助けてください

私のモデル1:user.rb

class User < ActiveRecord::Base
  has_and_belongs_to_many :roles
  devise :database_authenticatable, :registerable,
         :recoverable, :rememberable, :trackable, :validatable

  attr_accessible :email, :password, :password_confirmation, :remember_me , :roles

  has_and_belongs_to_many :roles

  def role?(role)
    return !!self.roles.find_by_name(role.to_s.camelize)
  end
end

私のモデル2:role.rb

class Role < ActiveRecord::Base
  attr_accessible :name
  has_and_belongs_to_many :users
end

私のユーザー移行ファイル

class DeviseCreateUsers < ActiveRecord::Migration
  def change
    create_table(:users) do |t|
      ## Database authenticatable
      t.string :email,              :null => false, :default => ""
      t.string :encrypted_password, :null => false, :default => ""

      ## Recoverable
      t.string   :reset_password_token
      t.datetime :reset_password_sent_at

      ## Rememberable
      t.datetime :remember_created_at

      ## Trackable
      t.integer  :sign_in_count, :default => 0
      t.datetime :current_sign_in_at
      t.datetime :last_sign_in_at
      t.string   :current_sign_in_ip
      t.string   :last_sign_in_ip

      t.timestamps
    end

    add_index :users, :email,                :unique => true
    add_index :users, :reset_password_token, :unique => true
  end
end

私の役割移行ファイル

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

      t.timestamps
    end
  end
end

私の結合テーブル移行ファイル

class UsersHaveAndBelongToManyRoles < ActiveRecord::Migration
  def up
    create_table :roles_users, :id => false do |t|
      t.references :role, :user
    end
  end

  def down
    drop_table :roles_users
  end
end

ERROR COMING は 未定義のメソッド「each」で、"2":String

2 は、選択された役割の ID です

4

1 に答える 1