0

我无法创建新的 api_user。每次我尝试创建它时,我都会得到

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

4

1 回答 1

1

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

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

不是所有的params哈希

于 2012-07-10T11:09:20.497 回答