vue之axios
时间:2020-05-04 21:34:36
收藏:0
阅读:75
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); })
评论(0)