美文网首页
(七)react使用axios请求数据

(七)react使用axios请求数据

作者: 前端来入坑 | 来源:发表于2019-12-12 19:37 被阅读0次
    • 安装
    cnpm install axios --save
    
    • 引入
    import  axios  from 'axios'
    
    • 使用
    getData=()=>{
    var  api='https://www.baidu.com';
    axios.get(api)
    .then(function (response) {
     // handle success
    console.log(response);
      })
    .catch(function (error) {
    // handle error
    console.log(error);
      });
    }
    

    相关文章

      网友评论

          本文标题:(七)react使用axios请求数据

          本文链接:https://www.haomeiwen.com/subject/jxmlgctx.html