Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Fetch | 25,716 | 250,591 | 7,988 | 22 days ago | 33 | February 27, 2021 | 19 | mit | JavaScript | |
A window.fetch JavaScript polyfill. | ||||||||||
Isomorphic Fetch | 6,936 | 185,206 | 6,794 | 3 months ago | 23 | September 23, 2020 | 54 | mit | JavaScript | |
Isomorphic WHATWG Fetch API, for Node & Browserify | ||||||||||
Unfetch | 5,560 | 2,467 | 783 | a month ago | 7 | September 29, 2020 | 23 | mit | JavaScript | |
🐕 Bare minimum 500b fetch polyfill. | ||||||||||
Cross Fetch | 1,546 | 14,308 | 1,942 | 2 days ago | 40 | April 10, 2022 | 14 | mit | JavaScript | |
Universal WHATWG Fetch API for Node, Browsers and React Native. | ||||||||||
Form To Google Sheets | 1,328 | 2 years ago | 41 | apache-2.0 | JavaScript | |||||
Store HTML form submissions in Google Sheets. | ||||||||||
React Ie8 | 988 | 4 years ago | 7 | January 06, 2016 | 21 | |||||
Make your React app work in IE8 | ||||||||||
Fetch Jsonp | 969 | 1,400 | 621 | 9 months ago | 16 | August 17, 2021 | JavaScript | |||
Make JSONP request like window.fetch | ||||||||||
Svgxuse | 744 | 173 | 62 | 9 months ago | 26 | October 25, 2017 | 13 | mit | JavaScript | |
A simple polyfill that fetches external SVGs referenced in use elements when the browser itself fails to do so. Demo: https://icomoon.io/svgxuse-demo/ | ||||||||||
Url Search Params Polyfill | 579 | 540 | 307 | 4 days ago | 22 | March 26, 2021 | 5 | mit | JavaScript | |
a simple polyfill for javascript URLSearchParams | ||||||||||
Abortcontroller Polyfill | 313 | 1,408 | 317 | 3 months ago | 40 | October 08, 2022 | 12 | mit | JavaScript | |
Polyfill for the AbortController DOM API and abortable fetch (stub that calls catch, doesn't actually abort request). |
fetch polyfill which supports all mainstream browsers, even IE6, IE7, IE8.....
$ npm install fetch-polyfill2 --save
$ npm install bluebird -- save
$ npm install json3 -- save
<script src='path-to-node_modules/bulebird/bluebird.js' ></script>
<!--or other promise polyfill library-->
<script src='path-to-node_modules/json3/json3.js' ></script>
<script src='path-to-node_modules/fetch-polyfill2/dist/index.js' ></script>
<script>
fetch('/users.html')
.then(function(response) {
return response.text()
}).then(function(body) {
document.body.innerHTML = body
})
</script>
It is strongly recommended that these three libraries be packaged together with webpack
fetch('/users.json')
.then(function(response) {
return response.json()
}).then(function(json) {
console.log('parsed json', json)
}).catch(function(ex) {
console.log('parsing failed', ex)
})
fetch('/users.json').then(function(response) {
console.log(response.headers.get('Content-Type'))
console.log(response.headers.get('Date'))
console.log(response.status)
console.log(response.statusText)
})
var form = document.querySelector('form')
fetch('/users', {
method: 'POST',
body: new FormData(form)
})
fetch('/users', {
method: 'POST',
headers: {
'Accept': 'application/json',
'Content-Type': 'application/json'
},
body: JSON.stringify({
name: 'Hubot',
login: 'hubot',
})
})
var input = document.querySelector('input[type="file"]')
var data = new FormData()
data.append('file', input.files[0])
data.append('user', 'hubot')
fetch('/avatars', {
method: 'POST',
body: data
})
###IE6-7 cors
涉及到的参数
jsonpCallbackFunction : 后端生成的函数名, 不传自动生成,与jQuery一致
jsonpCallback: 链接中的名字,不传为callback
,与jQuery一致
charset: 设置script的字符集
所有情况下,想跨域,都需要手动设置 credentials: 'include' 所有情况下,如果想发送请求,想带着cookie, 都需要设置 credentials: 'include'
fetch('/users', { //jsonp!!!
credentials: 'include',
}).then(function(response){
return response.json()
}).then(function(){
})
###使用fetch下载HTML乱码问题
fetch('http://tieba.baidu.com')
.then(res=> res.blob())
.then(blob => {
var reader = new FileReader();
reader.onload = function(e) {
var text = reader.result;
console.log(text)
}
reader.readAsText(blob, 'GBK') //或 UTF8,逐个试
})
更多用法见这里 http://www.w3ctech.com/topic/854