首页 > 其他 > 详细

django post方法不能提交

时间:2015-12-22 10:20:51      阅读:169      评论:0      收藏:0      [点我收藏+]
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 %}

django post方法不能提交

原文:http://www.cnblogs.com/pyfreshman/p/5065609.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!