批量更新字段
更新对象的单个字段
直接更新数据库
1 | Entry.objects.filter(pub_date__year=2010).update(comments_on=False) |
通过实例对象更新
1 | instance.save(update_fields=[ |
save()添加update_fields参数,表示更新指定字段值
更新对象的多个字段
1 | Entry.objects.filter(pub_date__year=2010).update(comments_on=False, headline='This is old') |