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 %}
上一篇:Java Garbage Collection Basics--转载


下一篇:How to Tune Java Garbage Collection--reference