You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When we try to submit json through the HTML form where the view is created with ListCreateAPI, it is not saving the values. If we save it using the application/json, it saves the values.
This was working fine in version 3.2.5 but it is not working in version 3.3.0
The text was updated successfully, but these errors were encountered:
I can post new data by using "Raw Data" with a media type "application/json", but "multipart/form-data" always gives a 400 Bad Request with a validation error {"title": "field is required."}
After some debugging I found out that when calling DjangoMultiPartParser a second time (from MultiPartParser) it seems like the stream is already consumed. (parsers.py:114)
When we try to submit json through the HTML form where the view is created with ListCreateAPI, it is not saving the values. If we save it using the application/json, it saves the values.
This was working fine in version 3.2.5 but it is not working in version 3.3.0
The text was updated successfully, but these errors were encountered: