最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - How to use the GitHub Fetch API polyfill - Stack Overflow

programmeradmin2浏览0评论

I would like to use a polyfill for fetch() so that my code runs on Safari using the GitHub Fetch Polyfill, but I'm not sure how to use it.

According to its documentation, I can install it with:

$ npm install whatwg-fetch --save

I have done this step.

I've already tried this, but it does not work:

var fetch = require('whatwg-fetch') // does not work

How am I suppose to use the fetch polyfill?


References:

  • Fetch API
  • GitHub Fetch Polyfill
  • Can I use fetch()?

I would like to use a polyfill for fetch() so that my code runs on Safari using the GitHub Fetch Polyfill, but I'm not sure how to use it.

According to its documentation, I can install it with:

$ npm install whatwg-fetch --save

I have done this step.

I've already tried this, but it does not work:

var fetch = require('whatwg-fetch') // does not work

How am I suppose to use the fetch polyfill?


References:

  • Fetch API
  • GitHub Fetch Polyfill
  • Can I use fetch()?
Share Improve this question edited Jul 24, 2017 at 16:05 jsstrn asked Jan 13, 2016 at 14:23 jsstrnjsstrn 4431 gold badge4 silver badges15 bronze badges 1
  • More than implementing, what you want is to use the polyfill. Maybe you could change the name of the question. – Salva Commented Jan 20, 2016 at 13:14
Add a ment  | 

1 Answer 1

Reset to default 10

First, install using

npm install --save whatwg-fetch

then use:

require('whatwg-fetch')

You can alternatively use import syntax

import 'whatwg-fetch'

The above method will require you to use browserify.

Another way (without requiring browserify) is to download the fetch.js file and place it in your project folder and then in your index.html use:

<script src="fetch.js"></script>
发布评论

评论列表(0)

  1. 暂无评论