Rails,生成记录 ID 的 MD5 哈希值并保存
保存 Rails 模型后,我想生成 ID 的 md5 哈希值并将其与对象一起保存在数据库中。
我的问题是,如何定义执行此操作的方法?我需要 ID 来进行计算,但是直到保存后才完成?
After saving a rails model, I'd like to generate an md5 hash of the ID and save it in the database with the object.
My question is, how do I define the method that does this? I need the ID to do the calculation, but this isn't done until after the save?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在模型中使用 after_create 回调来执行此操作。
仅供参考,4 个可用的“之后”回调是:
Use an after_create callback in the model to do this.
fyi the 4 'after' callbacks available are: