Skip to content

POST Requests

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

How to perform POST requests with Axios

Exception

Performing a POST request

Axios.post(
	"demo/base/remove"
).then(value ->{
	System.out.println(value);
});
Axios.post(
	url,
	new Body().add("name", "xiaoXunYao"),
).then(value ->{
	System.out.println(value);
});
Clone this wiki locally