We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
A little example of using Axios
Performing a GET request
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); });
There was an error while loading. Please reload this page.