1👍
There is no need for any parsing at the framework level. The body of the post request is always available in request.body
, so you can access it directly:
result = json.loads(request.body)
0👍
May be it will help you bit more to handle.
import json
import urlparse
json.dumps(urlparse.parse_qs("id=1&text=foo"))
- Aldryn django-cms adding template
- Downloadable file link in django tables
- View with form and context dict
- Django FileField upload_to assistance
- Django ImageField in TestCase
Source:stackexchange.com