发布于 

axios使用

     引入axio文件
     axios是一个用于进行ajax操作的js库

        -体积小,功能独立,除了ajax以外没有其他的额外功能

下载地址:

- https://unpkg.com/axios@0.19.2/dist/axios.min.js

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
发送get请求
axios({
method:'get',
url:'接口',
params:{
name:'jack',
age:18,
gender:'男'
}
}).then(function (res){
console.log(res);
});
发送post请求
axios({
method:'post',
url:'接口',
data:{
name:'rose',
age:19,
gender:'女'
}
}).then(function(res){
console.log(res);
});


本博客所有文章除特别声明外,均采用 CC BY-NC-SA 4.0 许可协议,转载请注明出处。