通过Form USing Rolify以及Devise和Cancan动态添加角色



我刚刚学习了教程"https://github.com/EppO/rolify/wiki/Tutorial"非常好,工作也很好。但我的问题是,我们不能使用Rails控制台通过表单添加Role吗。

<%= f.fields_for :users do |user_form| %>
    <div class="field"><%= user_form.label :email %><br />
    <%= user_form.email_field :email %></div>
    <div class="field"><%= user_form.label :password %><br />
    <%= user_form.password_field :password %></div>
    <div class="field"><%= user_form.label :password_confirmation %><br />
    <%= user_form.password_field :password_confirmation %></div>
    <div class="field">
      <%= f.label :roles %>
      <div class="controls">
        <% Role.all.each do |role| %>
          <%= check_box_tag "user[role_ids][]", role.id, @user.role_ids.include?(role.id) %>
          <%= role.name %><br />
        <% end %>
      </div>
    </div>
<% end %>

角色列连接到角色表(Rolify角色)

这是我的role.rb

class Role < ActiveRecord::Base
  has_and_belongs_to_many :users, :join_table => :users_roles
  belongs_to :resource, :polymorphic => true

User.rb

class User < ActiveRecord::Base
  belongs_to :account, :inverse_of => :users
  validates :account, :presence => true
  rolify
   attr_accessible :role_ids
   
  # Include default devise modules. Others available are:
  # :confirmable, :lockable, :timeoutable and :omniauthable
  devise :database_authenticatable, :registerable, :recoverable, :rememberable, :trackable, :validatable
  # Setup accessible (or protected) attributes for your model

  attr_accessible :email, :password, :password_confirmation, :remember_me, :role_ids
  # attr_accessible :title, :body
  has_many :auditinits
end

感谢您的帮助!!

用户窗体中,下拉选择角色为,

<%= user_form.select :role,options_from_collection_for_select(Role.all,"name","name) %>

用户控制器中的创建操作修改为

@user = User.new(user_params)
@user.add_role params[:user][:role]

相关内容

  • 没有找到相关文章

最新更新