0

我正在将应用程序从 rails3.2.13 迁移到 rails4.0.0-rc1。我有以下代码:

class Foo < ActiveRecord::Base
  has_many :bars
  before_create :build_bars

  private

  def build_bars
    self.bars.build({name: 'Bar 1'})
    self.bars.build({name: 'Bar 2'})
  end
end

上面的代码在 rails3 中工作,但在 rails4 中创建了空记录。控制台中的一些尝试和错误表明,确实没有分配属性。

f = Foo.new
f.bars.build({name: 'Bar'})
 => #<Bar id: nil, name: nil>

建立关联并将它们与其父记录一起保存的正确方法是什么?

4

1 回答 1

1

我认为@Mischa 是对的。我一直在将我的应用程序迁移到 rails4 并且它可以工作:

user.authorizations.build provider: "bla"
=> #<Authorization id: nil, provider: "bla", uid: nil, user_id: 1, created_at: nil, updated_at: nil>

你可以看看我所做的更改:https ://github.com/phoet/on_ruby/pull/83/files#L23L59

很可能它正在删除:

# Mass assignment settings
config.active_record.whitelist_attributes = true
于 2013-06-09T18:08:54.750 回答