关于fetch的使用

2017-05-10  本文已影响17人  风吹过的空气

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);
  });
});

以上是基础用法

上一篇下一篇

猜你喜欢

热点阅读