fetch已经被大部分的浏览器兼容了,包括chrome,Firefox,safari,opera,edge,但是IE不支持,但是如果想要支持ie,很简单,有一个很好的工具fetch-ie8,你就可以随意的遨游在js的美妙的世界中。
const url = 'https://api.github.com/urser/heromen';
fetch(url).then(result => {
return result.json().then(res => {
console.log(res);
});
});
以上是基础用法
网友评论