首页 > 编程 > Python > 正文

django在接受post请求时显示403forbidden实例解析

2020-01-04 16:06:30
字体:
来源:转载
供稿:网友

本文研究的主要是python/278901.html">python/268157.html">django在接受post请求时显示403forbidden时的处理方法,具体代码如下。

最近在做一个项目需要用到Django框架

在测试Django的时候发现一个问题,就是按照一般教程设置好URL的mapping之后,使用get请求总能得到正确的回应,但是在使用post请求时,却根本无法得到请求,会显示403forbidden:

Starting development server at http://127.0.0.1:8000/Quit the server with CTRL-BREAK.Forbidden (CSRF cookie not set.): /[23/Mar/2017 20:58:36] "POST / HTTP/1.1" 403 2857

根据提示(CSRF cookie not set)上网搜索了一下,发现只要在接收post请求的函数前加上csrf_exempt装饰器就可以了:

# coding=utf-8from django.http import HttpResponsefrom django.views.decorators.csrf import csrf_exemptimport json# Create your views here.@csrf_exemptdef index(request):  if request.method == 'POST':    body = json.loads(request.body)    print body['value']    return HttpResponse(request.body)

控制台输出为(传入的body为{'value': 'test'}):

Starting development server at http://127.0.0.1:8000/Quit the server with CTRL-BREAK.test[23/Mar/2017 21:03:37] "POST / HTTP/1.1" 200 17

总结

以上就是本文关于django在接受post请求时显示403forbidden实例解析的全部内容,希望对大家有所帮助。感兴趣的朋友可以继续参阅本站其他相关专题,如有不足之处,欢迎留言指出。感谢朋友们对本站的支持!


注:相关教程知识阅读请移步到python教程频道。
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表