We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
How to perform POST requests with Axios
Performing a POST request
POST
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); });