ActiveRecord嵌套属性,赋值自动保存到数据库

时间:2012-01-02 09:58:50

标签: ruby-on-rails activerecord nested-attributes

有没有办法为模型中的特定属性赋值,该模型被声明为嵌套属性而不立即将其保存在数据库中? (例如,首先将其保存在内存中)

1 个答案:

答案 0 :(得分:1)

从=>开始http://api.rubyonrails.org/classes/ActiveRecord/NestedAttributes/ClassMethods.html

"Note that the :autosave option is automatically enabled on every association that #accepts_nested_attributes_for is used for."

您无法使用嵌套属性执行此操作,但还有其他方法。你能先描述一下你的确切位置吗?!