【Vue】Axios的get/post请求params/data传参总结

本文总结了Vue中Axios库的GET和POST请求参数传递方式,包括get请求的params基础类型、Map、实体类接收,以及post请求的params、data接收,并指出GET请求传递List的注意事项和处理方法。对于POST请求,重点讲解了使用实体类和Map接收参数的规则。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

在这里插入图片描述


请求分类

在这里插入图片描述


一:Get请求

1.1:get-params

基础类型接收,名字对应即可

// method
const params = {
    id: '123456789',
    name: '张三'
}
test(params)
 
// api
export function test (params) {
  return axios({
    url: url,
    method: 'GET',
    params: params
  })
}
 
// 后台
@GetMapping("/test")
public Result test(Long id, String name) {
    return Res.ok();
}

使用Map接收,需要添加 RequestParam 注解

// method
const params = {
    id: '123456789',
    name: '张三'
}
test(params)
 
// api
export function test (params) {
  return axios({
    url: url,
    method: 'GET',
    params: params
  })
}
 
// 后台
@GetMapping("/test")
public Result test(@RequestParam Map<String, Object> map) {
    return Res.ok();
}

使用实体类接收

// 实体类
@Data
public class TestEntity {
    Long id;
    String name;
}
 
// method
const params = {
    id: '123456789',
    name: '张三'
}
test(params)
 
// api
export function test (params) {
  return axios({
    url: url,
    method: 'GET',	
    params: params
  })
}
 
// 后台
@GetMapping("/test")
public Result test(TestEntity testEntity) {
    return Res.ok();
}

ps: get请求不允许传递List,需要使用qs插件或者配置axios,具体参考链接


二:Post请求

2.1 post-params

基础类型接收,名字对应即可

// method
const params = {
    id: '123456789',
    name: '张三'
}
test(params)
 
// api
export function test (params) {
  return axios({
    url: url,
    method: 'POST',
    params: params
  })
}
 
// 后台
@PostMapping("/test")
public Result test(Long id, String name) {
    return Res.ok();
}

使用map接收

// method
const params = {
    id: '123456789',
    name: '张三'
}
test(params)
 
// api
export function test (params) {
  return axios({
    url: url,
    method: 'POST',
    params: params
  })
}
 
// 后台
@PostMapping("/test")
public Result test(@RequestParam Map<String, Object> map) {
    return Res.ok();
}

使用实体类接收

// 实体类
@Data
public class TestEntity {
    Long id;
    String name;
}
 
// method
const params = {
    id: '123456789',
    name: '张三'
}
test(params)
 
// api
export function test (params) {
  return axios({
    url: url,
    method: 'POST',	
    params: params
  })
}
 
// 后台
@PostMapping("/test")
public Result test(TestEntity testEntity) {
    return Res.ok();
}


2.2 post-data

使用实体类接收

// 实体类
@Data
public class TestEntity {
    Long id;
    String name;
}
 
// method
const params = {
    id: '123456789',
    name: '张三'
}
test(params)
 
// api
export function test (params) {
  return axios({
    url: url,
    method: 'POST',	
    data: params
  })
}
 
@PostMapping("/test")
public Result test(@RequestBody TestEntity testEntity) {
    return Res.ok();
}


总结

总体来说,只要使用 params get与post请求基本是一样使用的,如果参数名与传递名称不一致,需要使用@RequestParam修饰.

若使用Map接收参数,必须使用@RequestParam修饰。但是如果想传list类型的数据,需要使用单独的方法处理。

若使用data传递参数,必须使用一个实体类接收参数,而且需要添加注解@RequestBody进行修饰

—end

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值