我正在尝试对模型的单个字段中的所有元素执行操作,但出现错误:
list indices must be integers, not tuple
这是我在views.py中的索引函数:
design_list = Design.objects.values_list().order_by('-date_submitted')[:10]
x=list(design_list)
for i in x:
b = list(x[i]) # ERROR RELATES TO THIS LINE
c = b[2]
b[2] = datetimeConvertToHumanReadable(c)
new_list[i] = b
return render_to_response('index.html', {
'design_list': new_list,
})
我确定这是一个常见问题,有谁知道我做错了什么?