django post方法不能提交

def login(request):
    if request.method == 'GET':
        c = {}
        c.update(csrf(request))
        return render_to_response("login.html", c)
    elif request.method == 'POST' and 'username' in request.POST and request.POST['username']:
        c = {'name' :'username'}
        response = render_to_response("index.html")
        response.set_cookie("username", request.POST['username'])
        return response
    else:
        return Http404

step one:

在提交post 表单前,csrf_token 必须有值。

{% csrf_token %}
原文地址:https://www.cnblogs.com/pyfreshman/p/5065609.html