gpt4 book ai didi

python - “经理”对象不是可迭代的错误

转载 作者:太空宇宙 更新时间:2023-11-04 08:56:35 25 4
gpt4 key购买 nike

我正在尝试做一个简单的查询,但我得到了 'Manager' object is not iterable error.

我的代码(相关部分):

def sort(request):
sort_type = request.GET.get('srt', '')
q = Question.objects
if sort_type == 'views':
q.order_by('-views')
q.all()
return render(request, 'questions/index.html',{
'questions': q
})

我做错了什么?

最佳答案

你的代码应该是

def sort(request):
sort_type = request.GET.get('srt', '')
q = Question.objects.all()
if sort_type == 'views':
q = q.order_by('-views')
return render(request, 'questions/index.html',{
'questions': q
})

您需要将 q.order_by('-views') 分配给 q 以便更新您的查询集。

关于python - “经理”对象不是可迭代的错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29617001/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com