axios 的请求方式
// 使用默认进行请求(默认是get) axios({ url: "http://localhost:9999/student/student/getAllStudent" }).then(res => { console.log(res); }) // 指定请求方式为get无参请求 axios({ url: "http://localhost:9999/student/student/get