Skip to content

Minimal Example

晓寻遥 edited this page Dec 11, 2021 · 3 revisions

A little example of using Axios

Example

Performing a GET request

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);
});

Clone this wiki locally