如何解析利用fetch请求的数据

描述:
利用fetch发起一个ajax请求,请求api返回的用户信息,response中的body并没有我所需要的json信息,查看资料,fetch()请求获取的内容是一个 Stream 对象,这个Stream对象如何解析,最终拿到body中的json信息

var url='http://api.com/getUserInfo';
  fetch(url,{
      method:'GET',
      mode:'cors',// 避免cors攻击
      credentials: 'include'
  }).then(function(response) {
      //打印返回的json数据
      //console.log(response)  //状态信息
      //console.log(response.json())   //一个promise对象
      //console.log(response.json().data) //报错了
      //如何打印出body中的json信息
      
       response.json().then(function(data){
          console.log(data);
       });
  }).catch(function(e) {
      console.log("Oops, error");
});

继续then,就可以打印出数据

response.json().then(function(data){
       console.log(data);
});
阅读 14.4k
3 个回答
var url='http://api.com/getUserInfo';
  fetch(url,{
      method:'GET',
      mode:'cors',// 避免cors攻击
      credentials: 'include'
  }).then(function(response) {
      //打印返回的json数据
      response.json().then(function(data){
        console.log(data);
      }); 
  }).catch(function(e) {
      console.log("Oops, error");
});

你都知道response.json()是promise了,还不知道怎么取数据吗?再接着then

async function request(){
  const url='http://api.com/getUserInfo';
  try {
    const result = await fetch(url,{
      method:'GET',
      mode:'cors',// 避免cors攻击
      credentials: 'include'
    }).then(response=> response.json());
    console.log(result)
    return result;
  } catch (e) {
    console.log(e)
    throw e;
  }
}
撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题
宣传栏