激昂帽子

文章
7
资源
0
加入时间
2年10月17天

【Axios】axios的get请求和post请求的写法

axios的get请求和post请求的写法get请求一般的get请求写法 (在url上进行拼接参数)this.$axios.get('http://localhost:8080/book/delBook?bookId=' + bookId).then(res=>{ console.log(res);}).catch(err=>{ console.log(err);})需要传递对象参数的get请求写法this.$axios.get('http://local