axios

Time: 2024-07-21 Sunday 14:49:01
Author: Jackasher

axios

1
2
3
4
5
6
7
8
9
10
11
12
btn3.onclick = function (){
axios({
method: "get",
url: "http://127.0.0.1:3000/student",

}).then((res) => {
console.log(res);
console.log(res.data);
}).catch((err) => {
console.log(err);
})
}

axios会自动设置请求头Application和对对返回做promise处理


axios
http://example.com/2024/07/21/axios/
作者
Jack Asher
发布于
2024年7月21日
许可协议