axios的使用过程

Posted TomArthur

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了axios的使用过程相关的知识,希望对你有一定的参考价值。

与vue-resource使用过程一致

1.下载

npm install axios --save

2. 引入模块

import axios from \'axios\'

3. 发送请求

axios.get(url).then(response => {

  // 成功了

  const result = response.data 

  const mostRepo = result.items[0]

  this.repoUrl = mostRepo.html_url

  this.repoName = mostRepo.name

}).catch(error => {

  alert(\'axios请求失败\')

})

 

以上是关于axios的使用过程的主要内容,如果未能解决你的问题,请参考以下文章

VSCode自定义代码片段14——Vue的axios网络请求封装

ajax与 axios的基础讲解(附代码及接口)

项目集成element-plus和axios

前端面试题之手写promise

回归 | js实用代码片段的封装与总结(持续更新中...)

执行带有axios的GET请求时出现401错误