vue之axios
Posted 大话人生
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了vue之axios相关的知识,希望对你有一定的参考价值。
github地址:https://github.com/axios/axios
安装:npm install axios --save
导入:
import axios from ‘axios‘;
使用:
methods:{ //获取网络数据 reqData(){ axios.get(‘http://127.0.0.1:8080‘).then((response)=>{ console.log(response); }).catch((error)=>{ console.log(error); })
以上是关于vue之axios的主要内容,如果未能解决你的问题,请参考以下文章