在Rails中,ActiveRecord::Base.new
用于实例化尚未保存到数据库的新记录:
new_user = User.new(name: "Bob")
new_user.new_record? # => true
那么Rails如何实例化从数据库中检索的记录?它是否使用相同的新方法,然后在事后更改@new_record
之类的值?或者它是否对从数据库中检索的记录使用某种特殊的实例化方法?
答案 0 :(得分:5)
new_record?方法可以在ActiveRecord框架中的 active_record / persistence.rb 中找到,它看起来像这样:
def new_record?
@new_record
end
然后,如果你在构造函数中查看 active_record / core.rb ,你会看到:
def initialize(attributes = nil, options = {})
@attributes = self.class.initialize_attributes(self.class.column_defaults.deep_dup)
@columns_hash = self.class.column_types.dup
init_internals # here
ensure_proper_type
populate_with_current_scope_attributes
assign_attributes(attributes, options) if attributes
yield self if block_given?
run_callbacks :initialize if _initialize_callbacks.any?
end
如果我们在代码中深入挖掘一下:
def init_internals
pk = self.class.primary_key
@attributes[pk] = nil unless @attributes.key?(pk)
@aggregation_cache = {}
@association_cache = {}
@attributes_cache = {}
@previously_changed = {}
@changed_attributes = {}
@readonly = false
@destroyed = false
@marked_for_destruction = false
@new_record = true # here
@mass_assignment_options = nil
end
如您所见, @new_record默认情况下初始化为。
但是有些情况下@new_record属性设置为true,就像克隆记录一样:
user = User.first
new_user = user.clone
这将调用 initialize_dup 方法,如下所示:
def initialize_dup(other) # :nodoc:
# Code removed
@new_record = true
# Code removed
super
end
当然,当ActiveRecord从数据库中提取记录时。我不确定这部分,但我认为这个方法叫做:
def init_with(coder)
@attributes = self.class.initialize_attributes(coder['attributes'])
@columns_hash = self.class.column_types.merge(coder['column_types'] || {})
init_internals
@new_record = false
run_callbacks :find
run_callbacks :initialize
self
end
可以这样做:
post = Post.allocate
post.init_with('attributes' => { 'title' => 'hello world' })
在第一个语句中,它在堆上分配内存空间而不像新的那样调用构造函数。然后它调用特殊构造函数 init_with 。
答案 1 :(得分:2)
使用instantiate
方法完成,该方法使用低级allocate
方法而不是new
您可以找到此方法here。