I have seen a few of these questions asked but I have tried to implement their solutions and it hasn\'t worked for me.
I am trying to send a basic AJAX request to a
Django doesn't really de-serialize JSON payloads for you. request.POST is meant to be used for HTML posted forms, and the like.
Django
JSON
request.POST
For JSON payloads, you should de-serialize the request body yourself, for example: json.loads(request.body).
json.loads(request.body)
(request.body is how you access the raw payload).
request.body