关于fetch的使用
程序员文章站
2022-04-25 22:02:36
...
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);
});
});
以上是基础用法
下一篇: CDR时间机器展示过去不同年代的摄影风格