![Django 2 by Example](https://wfqqreader-1252317822.image.myqcloud.com/cover/817/36699817/b_36699817.jpg)
上QQ阅读APP看书,第一时间看更新
Updating objects
Now, change the title of the post to something different and save the object again:
>>> post.title = 'New title'
>>> post.save()
This time, the save() method performs an UPDATE SQL statement.
The changes you make to the object are not persisted to the database until you call the save() method.