用这2个方法也不难
axios({
method:"get",
url:"http://localhost:8080/ajax-demo/axiosServlet?username=zhangsan"
}).then(function (resp){
alert(resp.data);
});
post请求 axios可以把js对象直接转换成json对象
服务器 json对象和json字符串互转
用这2个方法也不难
axios({
method:"get",
url:"http://localhost:8080/ajax-demo/axiosServlet?username=zhangsan"
}).then(function (resp){
alert(resp.data);
});
post请求 axios可以把js对象直接转换成json对象
服务器 json对象和json字符串互转