我正在使用带有 Devise、Cancan 和 Rollify 的 Rails 4。
我有一个用户索引,有一个模式来改变角色。但是,当我尝试更新角色时,出现以下错误:“参数数量错误(1 为 2)”
错误发生在我的用户控制器代码的第 16 行:
13 def update
14 authorize! :update, @user, message: 'Not authorized as an administrator.'
15 @user = User.find(params[:id])
16 if @user.update_attributes(params[:user], as: :admin)
17 redirect_to users_path, notice: "User updated."
18 else
19 redirect_to users_path, alert: "Unable to update user."
20 end
21 end
发送参数的形式是:
<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>
这是我的榜样:
class Role < ActiveRecord::Base
has_and_belongs_to_many :users, :join_table => :users_roles
belongs_to :resource, :polymorphic => true
scopify
end
我猜这与 Rails 4 中从 attr_accessible 到 Strong Paramenters 的变化有关,但我不确定。如果是,我将私有方法放在哪里?