基础的实例
使用Axios的一个小例子
例子
执行GET请求
Axios.get(
"RollCall/people/axiosGet"
).then(response ->{
System.out.println(response);
});
Axios.get(
"RollCall/people/axiosGet",
new Request().add("name", "xiaoXunYao")
).then(value ->{
System.out.println(value);
});