时间:2021-05-22
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')
补充知识:Django的auto_now=True没有自动更新
auto_now=True自动更新,有一个条件,就是要通过django的model层。
如create或是save方法。
如果是filter之后update方法,则直接调用的是sql,不会通过model层,
所以不会自动更新此时间。官方解释:
What you consider a bug, others may consider a feature, e.g. usingupdate_fieldsto bypass updating fields withauto_now. In fact, I wouldn't expectauto_nowfields to be updated if not present inupdate_fields.
解决办法:
强制改成save()或是update时,带上时间。
如下:
status_item = DeployStatus.objects.get(name=status_name) DeployImage.objects.filter(name=order_name).update( deploy_status=status_item, change_date=datetime.now()) # 上面的操作,才会更新DeployImage表里的change_date(add_now=True)的时间, # 或是如下调用save()方法 # deploy_item = DeployImage.objects.get(name=order_name) # deploy_item.deploy_status = status_item # deploy_item.save()以上这篇django model的update时auto_now不被更新的原因及解决方式就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持。
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
django的时间是models#modelscreate_time=models.DateTimeField(blank=True,auto_now_add=
1、model模型开启自动完成时间戳功能2、使用update方法更新User::update(['name'='安阳'],['id'=>1]);Thinkphp
前言Django项目有一个耗时较长的update过程,希望在接到请求运行update过程的时候,Django应用仍能正常处理其他的请求,并且update过程要求
遇到win8.1update更新失败怎么办?下文将告诉大家win8.1update升级更新失败解决方法,如果你在升级过程中不慎失败,其实解决方法很简单哦~大
直接使用model2=model1会出现当更新model2时,model1的权重也会更新,这和自己的初始目的不同。经评论指出可以使用:model2=copy.d