ruby-on-rails – 具有默认值的ActiveRecord :: Store

前端之家收集整理的这篇文章主要介绍了ruby-on-rails – 具有默认值的ActiveRecord :: Store前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
使用新的ActiveRecord :: Store进行序列化,the docs给出了以下示例实现:
class User < ActiveRecord::Base
  store :settings,accessors: [ :color,:homepage ]
end

可以使用默认值声明属性,类似于:

store :settings,accessors: { color: 'blue',homepage: 'rubyonrails.org' }

解决方法

不,没有办法在商店通话中提供默认值. store macro很简单:
def store(store_attribute,options = {})
  serialize store_attribute,Hash
  store_accessor(store_attribute,options[:accessors]) if options.has_key? :accessors
end

所有的store_accessor都是通过访问器来遍历,并为每个访问器创建访问器和mutator方法.如果您尝试使用Hash with:访问器,您最终会向您的商店添加一些您不想要的东西.

如果要提供默认值,则可以使用after_initialize钩子:

class User < ActiveRecord::Base
  store :settings,:homepage ]
  after_initialize :initialize_defaults,:if => :new_record?
private
  def initialize_defaults
    self.color    = 'blue'            unless(color_changed?)
    self.homepage = 'rubyonrails.org' unless(homepage_changed?)
  end
end
原文链接:https://www.f2er.com/ruby/267223.html

猜你在找的Ruby相关文章