ES6使用fetch请求数据

Posted on 2019-04-22 09:36  猫头唔食鱼  阅读(658)  评论(0编辑  收藏  举报

ie是完全不支持fetch的。

fetch(url,{method:"get/post"}).then(res=>{   })

如果请求返回的status是200,body是ReadableStream那么,就要使用json()方法转换

 

例子:

fetch("http://jsonplaceholder.typicode.com/users").then(response => response.json()).then(res=>{
            console.log(res);
        })