jsheroes / community-help

Helping others is fun, ask away and the ClujJavaScripters community will help you!
15 stars 0 forks source link

isomorphic-fetch not working in Microsoft Edge #6

Closed alexnm closed 7 years ago

alexnm commented 8 years ago

Hello clujsers,

I currently have this very strange problem where isomorphic-fetch is not working well in Edge 14, I'm curios if anyone else encountered this problem, I have not found any issues online.

I need the isomorphic-fetch package because I'm using server side rendering so I need this to work from both node and from the browser. The node calls work perfectly, I get a fully rendered page with all the data, but as soon as I hit the browser, the calls are simply not done, there's nothing in the network tab and no error.

Note: I'm using version 2.2.1 of the package.

alexnm commented 7 years ago

Got back to this issue after a few months and found the problem. Because of some abstraction on top of the fetch api I was sending body: null on GET requests and apparently Edge doesn't like that so it was blocking my requests... strange issue