请求之Fetch
程序员文章站
2022-04-15 18:37:51
...
- 交互用的
- ie不支持,主流浏览器都支持,针对不支持的,使用Fetch Polyfill
- 用到了Promise语法,本身也是异步的
- fetch是一个函数
fetch(url, {
method: 'get',
headers: {
'content-type': 'application/json;charset=utf-8'
},
body: '',
}).then(res => { // 成没成
res.json(() => { // 不需要自己做判断成或没成
}).then((res) => { // 成功
}).catch(() => { // 失败,一般是服务器error
})
})