1👍
✅
your issue is not with django (isps and webservers) usually limit post requests sizes as they can be used for DDOS.
i don’t know if you’re using apache or nginx but this might directive might help : client_max_body_size
Also have you checked if the response timed out or never reached your python code ?
0👍
you could consider compressing json then posting it to server, and decompressing it in server side with some compression algorithm such as zlib-react, zlib-python …
- [Answered ]-How can I define the ManyToManyField name in django?
- [Answered ]-Django project and SVN loads older code versions
- [Answered ]-How to pass multiple app's models in one views? [django]
- [Answered ]-In django, why get_or_create doesn't work if the items contain ForeignKey
Source:stackexchange.com