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的使用过程的主要内容,如果未能解决你的问题,请参考以下文章