Rails,生成记录 ID 的 MD5 哈希值并保存

发布于 2024-12-17 08:29:34 字数 105 浏览 0 评论 0原文

保存 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

万劫不复 2024-12-24 08:29:34

在模型中使用 after_create 回调来执行此操作。

class YourClass < ActiveRecord::Base
  after_create :hash_it

  private

  def hash_it
    self.md5_hashed = id.md5_your_hash_method
  end

end

仅供参考,4 个可用的“之后”回调是:

after_validation  
after_create
after_save
after_commit

Use an after_create callback in the model to do this.

class YourClass < ActiveRecord::Base
  after_create :hash_it

  private

  def hash_it
    self.md5_hashed = id.md5_your_hash_method
  end

end

fyi the 4 'after' callbacks available are:

after_validation  
after_create
after_save
after_commit
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文