我如何在ActiveRecord设置默认值?
我看到Pratik的一篇文章,描述了一段丑陋而复杂的代码:http://m.onkey.org/2007/7/24/how-to-set-default-values-in-your-model
class Item < ActiveRecord::Base
def initialize_with_defaults(attrs = nil, &block)
initialize_without_defaults(attrs) do
setter = lambda { |key, value| self.send("#{key.to_s}=", value) unless
!attrs.nil? && attrs.keys.map(&:to_s).include?(key.to_s) }
setter.call('scheduler_type', 'hotseat')
yield self if block_given?
end
end
alias_method_chain :initialize, :defaults
end
我在谷歌上看到了以下例子:
def initialize
super
self.status = ACTIVE unless self.status
end
and
def after_initialize
return unless new_record?
self.status = ACTIVE
end
我也见过有人把它放在迁移中,但我更愿意看到它在模型代码中定义。
是否有一个规范的方法来设置默认值的字段在ActiveRecord模型?
Rails 5 +
你可以在你的模型中使用属性方法,例如:
class Account < ApplicationRecord
attribute :locale, :string, default: 'en'
end
您还可以将lambda传递给默认参数。例子:
attribute :uuid, :string, default: -> { SecureRandom.uuid }
第二个参数是类型,它也可以是一个自定义类型类实例,例如:
attribute :uuid, UuidType.new, default: -> { SecureRandom.uuid }
一些简单的情况可以通过在数据库模式中定义默认值来处理,但这不能处理许多棘手的情况,包括其他模型的计算值和键。对于这些情况,我这样做:
after_initialize :defaults
def defaults
unless persisted?
self.extras||={}
self.other_stuff||="This stuff"
self.assoc = [OtherModel.find_by_name('special')]
end
end
我决定使用after_initialize,但我不希望它应用于只发现那些新的或创建的对象。我认为几乎令人震惊的是,这个明显的用例没有提供一个after_new回调,但我已经通过确认对象是否已经被持久化来表明它不是新的。
看过Brad Murray的回答后,如果条件被移动到回调请求,这就更加清晰了:
after_initialize :defaults, unless: :persisted?
# ":if => :new_record?" is equivalent in this context
def defaults
self.extras||={}
self.other_stuff||="This stuff"
self.assoc = [OtherModel.find_by_name('special')]
end
Rails 5 +
你可以在你的模型中使用属性方法,例如:
class Account < ApplicationRecord
attribute :locale, :string, default: 'en'
end
您还可以将lambda传递给默认参数。例子:
attribute :uuid, :string, default: -> { SecureRandom.uuid }
第二个参数是类型,它也可以是一个自定义类型类实例,例如:
attribute :uuid, UuidType.new, default: -> { SecureRandom.uuid }