ruby-on-rails – 如何在rails app中为我的用户添加角色?

前端之家收集整理的这篇文章主要介绍了ruby-on-rails – 如何在rails app中为我的用户添加角色?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个简单的应用程序与设计的身份验证系统.我尝试将角色添加用户模型中.但没有任何反应.

我做的是
创建了角色模型并将其链接用户模型:

$rails g model Role name:string
$rails g migration addRoleIdToUser role:references
$rake db:migrate

(按照设计维基的指示)

然后在我的模型中:

class User < ActiveRecord::Base
  belongs_to :role
end
class Role < ActiveRecord::Base
  has_many :users
end

使用我的角色设置seeds.rb:

['seller','buyer','admin'].each do |role|
  Role.find_or_create_by({name: role})
end

然后

$rake db:seed

就这样.我还想知道如何让用户注册时选择任何这些角色

解决方法

首先,您可以在用户类中使用枚举,而不是使用关联:
class User < ActiveRecord:Base
   enum role: {seller: 0,buyer: 1,admin: 2}

   ... 
end

您需要迁移才能将角色(整数)列添加用户的表中.

在您的终端:

rails g migration add_role_to_users

然后编辑迁移文件

class AddRoleToUsers < ActiveRecord::Migration
   def change
      add_column :users,:role,:integer
   end
end

然后你可以,例如使用SimpleForm gem用户注册时选择自己的角色:

<%=  simple_for for @user do |f| %>
   ...
   <%= f.select :role,collection: User.roles.keys.to_a %>
   ... 
<% end %>

但SimpleForm对关联也很好:

<%= f.association :role,as: :radio_buttons %>

协会here还有更多的例子.

原文链接:https://www.f2er.com/ruby/268607.html

猜你在找的Ruby相关文章