1let data = {
2 key: value
3 },
4 headers = {
5 USERID: "",
6 TOKEN: ""
7 };
8 // 若无headers信息时,可传空对象占用参数位置
9 axios.post("api", qs.stringify(data), {
10 headers
11 }
12 }).then(response => {
13 // 请求成功
14 let res = response.data;
15 console.log(res);
16 }).catch(error => {
17 // 请求失败,
18 console.log(error);
19 });