0

我正在使用 Devise 和 CanCan 构建一个带有 Rails 4 的应用程序。当新用户注册时,他们不会被赋予默认角色。管理员必须通过管理面板手动分配它。这就是我遇到困难的地方。我不知道如何更新联接字段中的数据。这是我到目前为止所拥有的。

我的用户控制器:

 class UsersController < ApplicationController
  before_filter :authenticate_user!

  before_action :set_user, only: [:show, :update, :destroy]


   def index
    authorize! :index, @user, message: 'Not authorized as an administrator.'
    @users = User.all
  end

  def show
  end

  def update
    authorize! :update, @user, message: 'Not authorized as an administrator.'
    if @user.update_attributes(user_params)
      redirect_to users_path, notice: "User updated."
    else
      redirect_to users_path, alert: "Unable to update user."
    end
  end

  def destroy
    authorize! :destroy, @user, message: 'Not authorized as an administrator.'
    unless @user == current_user
      @user.destroy
      redirect_to users_path, notice: "User deleted."
    else
      redirect_to users_path, notice: "Can't delete yourself."
    end
  end

  private
     def set_user
      @user = User.find(params[:id])
    end

   def user_params
      params.require(:user).permit(:name, :email, :role_id, :user_id)
  end
  end

还有我的榜样:

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

  scopify
end

我的用户模型:

class User < ActiveRecord::Base
  rolify
  # Include default devise modules. Others available are:
  # :token_authenticatable, :confirmable,
  # :lockable, :timeoutable and :omniauthable
  devise :database_authenticatable, :registerable,
         :recoverable, :rememberable, :trackable, :validatable
end

如您所见,它几乎是 Devise 生成的标准模型。

这是我用来更新角色的表格:

<div id="role-options-<%= user.id %>" class="reveal-modal medium" style="display: none;">
  <%= simple_form_for user, url: user_path(user), html: {method: :put, class: 'custom' } do |f| %>
      <h3>Change Role</h3>
      <%= f.input :role_ids, collection: Role.all, as: :radio_buttons, label_method: lambda {|t| t.name.titleize}, label: false, item_wrapper_class: 'inline', checked: user.role_ids.first %>
      <%= f.submit "Change Role", class: "small button" %>
      <a class="close-reveal-modal" href="#">Close</a>
  <% end %>
</div>

当我检查表单上的新角色并提交时,我被重定向到用户页面,并显示“用户已更新”消息。但是,用户角色尚未更新。

我对 Rails 还是很陌生,只是无法弄清楚我做错了什么。如果我理解正确,我需要更新 user_roles 表中的数据。我只是不知道我做错了什么。

4

2 回答 2

2

您正在使用字符串参数,但忘记将 role_ids 添加到允许的字段中。

所以,你的控制器应该包含这样的东西(如果 role_ids 是一个数组):

  def user_params
      params.require(:user).permit(:name, :email, :role_ids => [])
  end

或者如果 role_ids 是标量,只需删除=> []部分。

更多信息可以在这里找到

于 2013-08-05T09:26:52.793 回答
0

我不确定 rolify 是做什么的。但我会这样做:

class User
  has_one :users_roles
  has_one :role, through: :users_roles

不过我不确定。但你可以试一试。我知道has_one :users_roles很奇怪。

于 2013-08-04T07:08:40.740 回答