提交 db274a02 编写于 作者: M Mikel Lindsaar

Fixed readme for ActiveModel::Dirty

上级 d1bedd18
......@@ -41,20 +41,38 @@ You can include functionality from the following modules:
* Tracking changes in your object
class MyClass
class Person
include ActiveModel::Dirty
define_attribute_methods [:name]
def name
@name
end
def name=(val)
name_will_change!
@name = val
end
def save
@previously_changed = changes
true
end
end
...provides all the value tracking features implemented by ActiveRecord
person.name # => 'bill'
person = Person.new
person.name # => nil
person.changed? # => false
person.name = 'bob'
person.changed? # => true
person.changed # => ['name']
person.changes # => { 'name' => ['bill', 'bob'] }
person.changes # => { 'name' => [nil, 'bob'] }
person.name = 'robert'
person.save
person.previous_changes # => {'name' => ['bob, 'robert']}
\ No newline at end of file
{Learn more}[link:classes/ActiveModel/Dirty.html]
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册