本文介绍了Django:一旦切片被采取,就无法更新查询的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述 29岁程序员,3月因学历无情被辞! 我试图这样做:UserLog.objects.filter(user=user).filter(action='message').filter(timestamp__lt=now)[0:5].update(read=True) 但我收到这个错误:but I am getting this error:Cannot update a query once a slice has been taken.(使用django 1.2.1)(using django 1.2.1)我做错了什么?推荐答案正如错误所述,您不能调用 update() / code>在查询集上,如果你拿出一个切片。As the error states, you cannot call update() on a QuerySet if you took out a slice.原因: 采取切片相当于SQL中的 LIMIT 语句。 发出更新会使您的查询变为更新声明Taking a slice is equivalent to a LIMIT statement in SQL.Issuing an update turns your query into an UPDATE statement.您尝试做的是等同于 更新... WHERE ... LIMIT 5这是不可能的,至少不符合标准SQL。which is not possible, at least not with standard SQL. 这篇关于Django:一旦切片被采取,就无法更新查询的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持! 上岸,阿里云! 08-28 15:48