gmt_create自動添加auto_now_add;gmt_modify自動更新auto_now
class CommonInfo(models.Model):
"""基類,提供共同資訊,不會建立真實的table"""
class Meta:
# 聲明自己為抽象基類
abstract = True
# 下面表示先根據更新時間gmt_modify降序排序,如果更新時間相同,再根據建立時間gmt_create降序排序
ordering = ['-gmt_modify', '-gmt_create']
gmt_create = models.DateTimeField('建立時間,自動建立', auto_now_add=True, null=True, help_text='建立時間')
# 使用save可以達到自動更新的效果,使用update不會自動更新,是以需要攜帶上這個字段
gmt_modify = models.DateTimeField('更新時間,自動更新', auto_now=True, null=True, help_text='更新時間')
django的orm關于更新資料庫的方法有update和save兩種方法。
使用save時會自動更新
obj = User.objects.get(id=1)
obj.name='xxx'
obj.save()
save()時确實會自動更新目前時間
這是因為這個操作它經過了model層
使用update不會自動更新;是以需要在使用filter的update更新的時候同時指派時間為datetime.datetime.now()
如果用django filter的update(通常為批量更新資料時)則是因為直接調用sql語句 不通過 model層
User.objects.filter(id=1).update(username='xxx')