TypeError: 'QueryDict' object is not callable
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了TypeError: 'QueryDict' object is not callable相关的知识,希望对你有一定的参考价值。
id = int(request.POST(‘id‘))
Error message:
TypeError: ‘QueryDict‘ object is not callable
Error reseaon:
request.POST is a QueryDict, dictionary lookup syntax instead:
id = int(request.POST[‘id‘])
以上是关于TypeError: 'QueryDict' object is not callable的主要内容,如果未能解决你的问题,请参考以下文章
'QueryDict' object is not callable 错误解析