标签:
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
标签:
原文地址:http://www.cnblogs.com/Raymon-Geng/p/Raymon.html