<script src="https://unpkg.com/axios/dist/axios.min.js"></script>
get请求
<script src="https://unpkg.com/axios/dist/axios.min.js"></script>
<script type="text/javascript">
<script>
//1.get的有参请求,参数直接以问号连接的形式跟在url后面
axios({
method:"get",
url:"http://localhost/ajaxServlet?username=zhangsan"
}).then(function (resp) {
alert(resp.data);
})
//1.get的有参请求,参数使用params属性传递
axios({
method:"get",
url:"http://localhost/ajaxServlet"
params:{
username="zhangsan"
}
}).then(function (resp) {
alert(resp.data);
})
</script>
get的简写:
axios.get("http://localhost/ajaxServlet",{params:{username:"1"}}).then(res=>{
console.log(res)
})
get请求
因为axios使用post携带参数默认使用application/josn所以后台 可能接受不到参数
解决:
1.不使用data使用params传递
2.使用data传递,在接受端的参数上加上@requestBody注解让其转化成java对象
<script src="https://unpkg.com/axios/dist/axios.min.js"></script>
<script type="text/javascript">
<script>
axios({
method:"POST",
url:"http://localhost/ajaxServlet",
params:{
username="zhangsan"
}
}).then(function (resp) {
alert(resp.data);
})
</script>
post简写
//使用params
axios.post("http://localhost/ajaxServlet","username:1&age=10").then(res=>{
console.log(res)
}).catch(err=>{
console.log(err)
})
//使用data
axios.post("http://localhost/ajaxServlet",{username:'zhangsan'}).then(res=>{
console.log(res)
}).catch(err=>{
console.log(err)
})
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)