Django:在有序查询集中使用渐进数字更新字段
使用 Django 1.2.3,我需要使用一组有序实例中的排名来更新模型字段,而不必检索整个查询集并手动更新每个模型。
有办法实现吗?
Using Django 1.2.3, I need to update a model field with a ranking among an ordered set of instances, without having to retrieve the entire queryset and update each model by hand.
Is there a way to achieve that?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为这就是您所需要的: http://docs.djangoproject.com/en/dev/topics/db/queries/#updating-multiple-objects-at-once
I think this is what you need: http://docs.djangoproject.com/en/dev/topics/db/queries/#updating-multiple-objects-at-once