vue数组传值到后端

const arrays= ["zhangsan","lisi"]

请求方式:GET

vue前端:

getDetailList({arrays:arrays}).then((res) =>{
  //处理查询回的数据
})

后端: 

@GetMapping("/getDetailList")
public List<Object> getDetailList(@RequestParam(value="arrays[]", required=false) String[] arrays){
  //具体实现
}

请求方式:POST

const names= ["zhangsan","lisi"]

const ids= ["10000","10001"]

vue前端:

batchSaveMap(qs.stringfy({names:names,ids:ids})).then((res) => {
  //判断是否保存成功
})

后端:

@PostMapping("/batchSaveMap")
public int batchSaveMap(String[] names,long[] ids){
  //具体实现
}

  

posted @ 2022-02-17 16:37  bud  阅读(2856)  评论(0编辑  收藏  举报