- 发送get请求
SpringBoot后端接口无论是使用类把请求参数封装起来还是使用多个基本类型去接收,axios发送请求时都值需要按照如下方法传参即可,注意使用这种方法传参时,后端封装请求参数的类的对象名可以任意:
this.axios.get(baseUrl, {
params: /*参数对象如 {id:useId} */
}).then(resp => {
//do something
})
- 发送post
与get请求不同,如果SpringBoot使用类把请求参数封装起来去接收请求参数,传参方法如下
this.axios.post(baseUrl, {
/*参数对象如 id:useId */
}).then(resp => {
//do something
})
如果SpringBoot使用使用多个基本类型去接收请求参数,传参方法如下
this.axios.post(baseUrl, qs.stringify({/*参数对象如 id:useId */})).then(resp => {
//do something
})