ruby-on-rails – 在rails模型中的before_create

前端之家收集整理的这篇文章主要介绍了ruby-on-rails – 在rails模型中的before_create前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个rails模型User,它有名字,电子邮件和哈希字段.

通过执行以下操作将数据保存到此:

@u = User.create(:name=>'test',:email=>"test@mail.com")
@u.save

如何合并before_create回调,以便在保存记录之前,哈希值通过以下代码获取哈希字符串:

Digest::SHA1.hexdigest('something secret' + email)

我的用户模型将如何?

class Employee < ActiveRecord::Base
   before_create :set_hash

   def set_hash 
      //what goes in here?
   end
end

解决方法

您可以使用self关键字访问(和更改)当前模型的实例变量.
def set_hash
  self.email = Digest::SHA1.hexdigest('something secret' + self.email)
end
原文链接:https://www.f2er.com/ruby/264938.html

猜你在找的Ruby相关文章