1

我有一个模型,当它实例化一个对象时,它还会创建另一个具有相同用户 ID 的对象。

class Foo > ActiveRecord::Base

after_create: create_bar

private

def create_bar
  Bar.create(:user_id => user_id #and other attributes)
end

end

在 Bar.rb 中,我有 attr_protected 以保护它免受黑客攻击。

class Bar > ActiveRecord::Base
  attr_protected :user_id, :created_at, :updated_at
end

就目前而言,如果不禁用 attr_protected 或让 Bar 对象的 user_id 变为空白,我似乎无法创建新的 Bar 对象......

如何让 bar 对象接受来自 foo 的 :user_id 属性而不失去来自 attr_protected 的保护?

4

3 回答 3

10

调用new,createfind_or_create_by(以及任何其他最终调用new)时,您可以传递一个附加选项without_protection: true.

http://api.rubyonrails.org/v3.2.22/classes/ActiveRecord/Base.html#method-c-new

于 2013-02-28T23:29:09.393 回答
2

尝试做:

def create_bar
  bar = Bar.build(... other params ...)
  bar.user_id = user_id
  bar.save!
end
于 2010-01-22T20:58:07.990 回答
2

attr_protected过滤attributes=方法中调用的属性new。您可以通过以下方式解决您的问题:

def create_bar
  returning Bar.new( other attributes ) do |bar|
    bar.user_id = user_id
    bar.save!
  end
end
于 2010-01-22T21:01:20.213 回答