HTML5 fetch polyfill from github wrapped and bundled for ember-cli users.
ember install ember-fetch
import Route from '@ember/routing/route';
import fetch from 'fetch';
export default Route.extend({
model() {
return fetch('/my-cool-end-point.json').then(function(response) {
return response.json();
});
}
});Available imports:
import fetch, { Headers, Request, Response, AbortController } from 'fetch';To use ember-fetch with TypeScript or enable editor's type support, add "fetch": "ember-cli/ember-fetch" to your app's devDependencies. This will get the current state of ember-fetch from this GitHub repo as a dependency.
To have Ember Data utilize fetch instead of jQuery.ajax to make calls to your backend, extend your project's application adapter with the adapter-fetch mixin.
// app/adapters/application.js
import DS from 'ember-data';
import AdapterFetch from 'ember-fetch/mixins/adapter-fetch';
export default DS.RESTAdapter.extend(AdapterFetch, {
...
});Currently, Fastboot supplies its own server-side ajax functionality, and including ember-fetch and the adapter-fetch mixin in a Fastboot app will not work without some modifications. To allow the node-fetch polyfill that is included with this addon to make your API calls, you must add an initializer to the consuming app's fastboot directory that overrides the one Fastboot utilizes to inject its own ajax.
Example:
// fastboot/initializers/ajax.js
export default {
name: 'ajax-service',
initialize() {
// noop
// This is to override Fastboot's initializer which prevents ember-fetch from working
// https://github.com/ember-fastboot/ember-cli-fastboot/blob/master/fastboot/initializers/ajax.js
}
}ember-fetch uses node-fetch in Fastboot, which doesn't allow relative URL.
urlshould be an absolute url, such ashttps://example.com/. A path-relative URL (/file/under/root) or protocol-relative URL (//can-be-http-or-https.com/) will result in a rejected promise.
However, ember-fetch grabs the protocol and host info from fastboot request after the instance-initializes.
This allows you to make a relative URL request unless the app is not initialized, e.g. initializers and app.js.
For addon authors, if the addon supports Fastboot mode, ember-fetch should also be listed as a peer dependency.
This is because Fastboot only invokes top-level addon's updateFastBootManifest (detail), thus ember-fetch has to be a top-level addon installed by the host app.
ember-fetch allows access to native fetch in browser through a build config flag:
// ember-cli-build.js
let app = new EmberAddon(defaults, {
// Add options here
'ember-fetch': {
preferNative: true
}
});If set to true, the fetch polyfill will be skipped if native fetch is available,
otherwise the polyfilled fetch will be installed during the first pass of the vendor js file.
If set to false, the polyfilled fetch will replace native fetch be there or not.
If all your browser targets support native fetch, and preferNative: true, the polyfill will not be included in the output build. If, for some reason, you still need the polyfill to be included in the bundle, you can set alwaysIncludePolyfill: true.
The way you do import remains same.
- evergreen / IE10+ / Safari 6.1+ https://github.com/github/fetch#browser-support
Yes, pretender v2.1 comes with fetch support.
- ideally yes, but only if you cater to IE9+
- for basic drop-in compat
import ajax from 'ember-fetch/ajax'
- taken care of for you
- original emits a global
- original requires a Promise polyfill (ember users have RSVP)
- original isn't Ember run-loop aware
- we actually don't bundle github/fetch rather we merely wrap/transform what
comes from
node_modules, so we should be resilient to changes assuming semver from the fetch module