具有虚拟属性的 after_save 回调 Rails 3
Posted
技术标签:
【中文标题】具有虚拟属性的 after_save 回调 Rails 3【英文标题】:after_save callback with virtual attributes Rails 3 【发布时间】:2011-09-08 08:44:13 【问题描述】:我不知道这是否可能,所以我想我会问。
1. Give a model some virtual attributes
2. Assign values to the model and the virtual attributes
3. Save the model
4. Use a callback after_save to create a different object with the virtual attributes.
这可以在 Rails 3 中完成吗?
【问题讨论】:
【参考方案1】:只要关联与您无关,请使用:
http://apidock.com/rails/ActiveRecord/Base/clone
【讨论】:
以上是关于具有虚拟属性的 after_save 回调 Rails 3的主要内容,如果未能解决你的问题,请参考以下文章
Rails ActiveRecord 在 after_save 回调中使用最近保存的记录 ID [关闭]
使用“counter_cache”时如何调用 after_save 回调?
Rails - 如何从after_save回调中查看旧模型值和新模型值?