React中使用superagent的get请求

写在前面

这个真三分钟就可以上手系列。原来用过axios,但是有项目需要用这个,发现superagent的用法是真的很简单,参考博客:
https://www.jianshu.com/p/72691eb6a4f3
写得太好了-0-

使用方法(链接的博客写得很详细)

  1. 安装
npm install superagent --save
  1. 导入
import ajax from 'superagent';//ajsx那里可以取任意名字
  1. 使用(单独写成函数就可以直接调用)
ajax.get('http://xxxxxxxxxxxx')
    .end((error, response) => {
      if (!error && response) {
         console.log('response',response.body.data);
      } else {
        console.log('There was an error fetching from GitHub', error);
      }
    }
    );

你可能感兴趣的:(React)