发布请求中的Django错误:'module'对象没有属性'POST'

时间:2014-08-28 16:07:44

标签: python django post request django-views

你好我在views.py中有一个登录方法然后如果我从带有帖子请求的表单中调用它我有'模块'对象没有属性' POST'错误,但正如你所见,我可以在追溯中获得表单值。我在之前的django项目中获得了类似的表单值。我比较了我的旧代码和这段代码,但我无法找到我的错误。

enter image description here

enter image description here

enter image description here enter image description here

1 个答案:

答案 0 :(得分:1)

根据definition of a django view

  

视图函数或简称视图只是一个Python函数   接受Web请求并返回Web响应。

request应作为参数传递给视图,而不是导入:

def loginUser(request):
    ...

并删除from django.http import *行。