2012-07-10 36 views
0

我无法创建新的api_user。每次我尝试创建它,我得到ActiveModel :: MassAssignmentSecurity :: ApiUsersController中的错误#create

Can't mass-assign protected attributes: utf8, authenticity_token, api_user, commit, action, controller 

这里是我的模型api_user.rb

class ApiUser < ActiveRecord::Base 
attr_accessible :api_key, :count, :email, :name, :organization 
end 

控制器api_users_controller.rb

class ApiUsersController < ApplicationController 
#skip_before_filter :verify_authenticity_token 

def new 
    @api_user = ApiUser.new 
end 

def create 
    @api_user=ApiUser.create(params) 
    render :text=>"#{@api_user.id}" 
end 

def destroy 
    @api_user=ApiUser.find(params[:id]) 
    @api_user.destroy 
    render :text=>"Deleted successfully" 
end 
end 

我使用Ruby 1.9.2和Rails 3.2.3

回答

1

为了创建ApiUser,您应该只使用正确的参数:

@api_user=ApiUser.create(params[:api_user]) 

不是所有的params哈希

+0

,帮助的感谢! – 2012-07-10 11:14:43

相关问题