在控制台中使用自动填充功能时,我经常会在我的属性后面看到“_was
”。但我找不到任何文档或最佳实践用法。它做了什么以及如何使用它?
示例:user.fname
的方法为user.fname_was
使用source_location,我已将其追踪到:active_model / attribute_methods.rb“,第296行,但没有任何具体内容。
答案 0 :(得分:34)
这是ActiveModel :: Dirty的一部分 你可以在这里看到它https://github.com/rails/rails/blob/af64ac4e5ce8406137d5520fa88e8f652ab703e9/activemodel/lib/active_model/dirty.rb#L146 实施例
person = Person.find_by_name('Uncle Bob')
person.changed? # => false
更改名称:
person.name = 'Bob'
person.changed? # => true
person.name_changed? # => true
#method _was return prev attribute value
person.name_was # => 'Uncle Bob'
person.name_change # => ['Uncle Bob', 'Bob']
person.name = 'Bill'
person.name_change # => ['Uncle Bob', 'Bill']