[Answered ]-How to convert QueryDict to python dictionary

2👍

Your sending the data as a raw JSON post, not a form-encoded one. So you should access request.body, not request.POST, and decode the JSON from there.

Leave a comment