我有两个模型用户和角色,它们有第三个模型 user_role。我想在创建时为用户分配一些角色。一个用户可以有多个角色,一个角色可以分配给多个用户。我在角色表中创建了经理和管理员等角色。现在我需要在创建用户时在用户页面的下拉列表中显示这些保存的记录。用户和角色模型之间存在多对多的关联。
我所做的:我已在 Roles 表中将数据保存为角色名称,如 manager、hr 或 amdin。
Doubuts:现在我想在创建用户时在用户页面的下拉列表中显示这些保存的记录,并希望与用户记录一起保存。我不知道如何在下拉列表中的用户页面上获取角色表数据,然后将其保存到角色表中。
用户.rb
class User < ActiveRecord::Base
has_many :roles, :through => :role_users
has_many :roles_users
# Include default devise modules. Others available are:
# :token_authenticatable, :confirmable,
# :lockable, :timeoutable and :omniauthable
devise :database_authenticatable, :registerable,
:recoverable, :rememberable, :trackable, :validatable
# Setup accessible (or protected) attributes for your model
attr_accessible :username, :email, :password, :password_confirmation,
:remember_me, :first_name, :last_name, :is_admin, :contact_no, :birth_date,
:joining_date, :is_active, :is_hr, :is_manager, :user_code, :designation
# attr_accessible :title, :body
end
角色.rb
class Role < ActiveRecord::Base
attr_accessible :name
has_many :users, :through => :role_users
has_many :role_users
end
role_user.rb
class RolesUser < ActiveRecord::Base
attr_accessible :role_id, :user_id
belongs_to :user
belongs_to :role
end
角色控制器.rb
class RolesController < ApplicationController
before_filter :authorize_admin!
def index
@roles = Role.all
end
def new
@role = Role.new
end
def create
@role = Role.new(params[:role])
if @role.save
flash[:success] = "role created!"
redirect_to role_path(@role)
else
render 'new'
end
end
def show
@role = Role.find(params[:id])
end
def edit
@role = Role.find(params[:id])
end
def update
@role = Role.find(params[:id])
if @role.update_attributes(params[:role])
flash.notice = "Role #{@role.name} has been updated"
redirect_to role_path(@role)
else
render 'edit'
end
end
def destroy
@role = Role.find(params[:id])
@role.destroy
redirect_to action: 'index'
end
end
基本上我想从角色表中获取数据到用户表的下拉列表中,并希望在创建用户时保存。谁能帮我。如果您需要粘贴更多代码,请告诉我。