标签: python django
@csrf_exempt def get_request(request): return JsonResponse({"method":request.method})
邮递员POST结果
{ "method": "GET" }
我尝试检测请求方法,但是无论我使用什么请求,它总是返回GET
有人知道问题出在哪里吗?