[Django]-UseEffect fires and print statements run but no actual axios.post call runs reactjs

5👍

The issue is somewhere in your python server code, in your console you can see that you are actually logging a response object with a 200 response code, meaning your server doesn’t crash during the actual request.

There might be a problem in your server side logging causing the request to not show up, I would look at that first.

Leave a comment