I had a working draft that worked for the last 3 weeks. Suddenly, out of nowhere, the selection requests stopped working.
I did not start updating or installing npm. So I lost what might be causing this.
My selection request is pretty standard. Simplified here with console.log instead of setState in the response.
fetch("https://54fd510.ngrok.io/api/v1") .then((response)=>response.json()) .then((responseData)=>{ console.log(responseData); }).done();
All that I get, whenever I make any request, "Network request error" with ... in the process. _sendload, setReadyState as stack trace elements.
Infact all query requests in the application do not work.
So, I tried to boil it and just created a new empty application.
Only with a button and a fetch request associated with a button. To make sure that this has nothing to do with my particular application. And this request also does not work.
So, it seems that his reaction alone does not work, it has nothing to do with my code.
No matter what I try, the network request always fails. Tried to lower and get the same.
Really lost as to where to look now.
Any ideas?
KyleK Mar 21 '16 at 9:08 2016-03-21 09:08
source share