.Tang

  博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理
from django.views.decorators.csrf import csrf_exempt

@csrf_exempt # 前端ajax请求时需要验证,否则403
def fun(request):
  if request.method == 'POST': # 请求方式时Post则响应
    HttpResponse('ok')
posted on 2018-05-31 15:13  .Tang  阅读(350)  评论(0编辑  收藏  举报