2

我遇到了一个错误:我正在使用 Facebook 集成开发一个网络。我是 ruby​​ on rails 的新手。你能帮我解决我的问题吗?

ActiveModel::MassAssignmentSecurity::Error in SessionsController#create

Can't mass-assign protected attributes: name

这是我的控制器:

class SessionsController < ApplicationController
  def create
    #render :json => request.env['omniauth.auth'].to_yaml
   auth = request.env['omniauth.auth']
    unless @auth = Authorization.find_from_hash(auth)
      @auth = Authorization.create_from_hash(auth, current_user)
    end

    self.current_user = @auth.user  
    render :text => "Welcome, #{current_user.name}."
   end
end

这是我的用户模型:

class User < ActiveRecord::Base
  has_many :authorizations
  attr_accessor :name, :uid, :provider

  def self.create_from_hash!(hash)
    #create(:name => hash['user_info']['name'])
   create(:name => hash.info.name)
  end
end

这是我的授权模型:

class Authorization < ActiveRecord::Base
  belongs_to :user
  validates_presence_of :user_id, :uid, :provider
  validates_uniqueness_of :uid, :scope => :provider

  def self.find_from_hash(hash)
    find_by_provider_and_uid(hash['provider'], hash['uid'])
  end

  def self.create_from_hash(hash, user = nil)
    user ||= User.create_from_hash!(hash)
    Authorization.create(:user => user, :uid => hash['uid'], :provider => hash['provider'])
  end
end

我该如何解决这个问题..提前谢谢:)

4

1 回答 1

11

您当然已经启用了批量分配保护config.active_record.whitelist_attributes = true在您的配置文件中),因此您需要明确指出哪些属性可以通过update_attributes. 你用attr_accessible.

User模型中,替换以下行(看起来没用)

attr_accessor :name, :uid, :provider

经过

attr_accessible :name, :uid, :provider

在此处此处此处查看与相关的问题attr_accessorattr_accessible更多信息

于 2012-10-22T10:20:34.527 回答