Voyz's Studio.

Vue用axios发送http请求

字数统计: 80阅读时长: 1 min
2018/11/30 Share

安装axios库

1
npm instal axios

发送请求

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import axios from 'axios' 

// GET请求
axios.get('请求url', 你的请求参数(JSON))
.then(function (response) {
console.log(response);
})
.catch(function (error) {
console.log(error);
});

// POST请求
axios.post('请求url', 你的请求参数(JSON))
.then(function (response) {
console.log(response);
})
.catch(function (error) {
console.log(error);
});
CATALOG
  1. 1. 安装axios库
  2. 2. 发送请求