axios提供了多种异步请求方法,实现对RESTful风格的支持。
1.get请求
axios.get(url).then(function);
axios.get(url,{}).thrn(function);
//使用axios的get请求传递参数,需要将参数设置在params下
axios.get("http://localhost:9999/music/detail",{
params:{
id:"28059417"
}
})
.then(function(res){
console.log(res);
});
2.post请求
axios.post(url,{}).thrn(function);
axios.post("http://localhost:9999/music/search",{s:"张杰"})
.then(function(res){
console.log(res);
});
3.自定义请求:自定义请方式、请求参数、请求头、请求体(仅限于post)
axios({
url:"http://localhost:9999/music/search",
method:"post",
params:{
//设置请求行传值
s:"成都",
limit:15
},
headers:{
//设置请求头
},
data:{
//设置请求体(仅限于post/put)
}
}).then(function(res){
//回调
console.log(res);
});
版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。
文章由极客之音整理,本文链接:https://www.bmabk.com/index.php/post/128134.html