belongs_to has_one关联记录保存
如果我有
class User < ActiveRecord::Base
has_many :books
end
。
class Book < ActiveRecord::Base
belongs_to :user
end
问题: 当我保存 Book 的实例时,它也会调用其关联用户的 save 吗?
在我的代码库中,我发现当我调用 @somebook.save 时,“用户的 after_save 回调正在执行”。
If i have
class User < ActiveRecord::Base
has_many :books
end
.
class Book < ActiveRecord::Base
belongs_to :user
end
Question:
When i save an instance of Book, will it call save on its associated User as well?
In my code base im finding that when i call @somebook.save, 'User's after_save callbacks are being executed.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
将对象分配给belongs_to 关联不会自动保存该对象。它也不保存关联的对象。
Assigning an object to a belongs_to association does not automatically save the object. It does not save the associated object either.