Monday, May 20, 2024
125
rated 0 times [  126] [ 1]  / answers: 1 / hits: 95727  / 8 Years ago, thu, april 7, 2016, 12:00:00

I'm building a site with ES6 and Babel.



In a script file, I need to make an ajax call to a service on server. For that I'm doing like this:



fetch('url').then(
response => response.json()
).then(
supervisoryItems => doSomething(supervisoryItems)
)


In Google Chrome this works just fine, but it does not work on Firefox or IE (I'm getting the error fetch is undefined).
Searching on Google I found this should fix it:



import promise from 'es6-promise'
promise.polyfill()


Sadly it does not change anything, I have the same issue. Any help?


More From » ecmascript-6

 Answers
47

You need to add the 'isomorphic-fetch' module to your 'package.json' and then import this.



npm install --save isomorphic-fetch es6-promise


Then in your code



import isomorphic-fetch


See https://www.npmjs.com/package/isomorphic-fetch


[#62655] Tuesday, April 5, 2016, 8 Years  [reply] [flag answer]
Only authorized users can answer the question. Please sign in first, or register a free account.
kaleyv

Total Points: 259
Total Questions: 99
Total Answers: 107

Location: Saint Helena
Member since Tue, Nov 3, 2020
4 Years ago
;