java 参数前可加 @RequestParam @RequestBody
@GetMapping("/get")
public String get(List<String> list) {
return "ok";
}
前端
http://localhost:8080/get?list=123&list=123123&list=3333
解决方法2:
1、将Controller的接口改为 post 请求方式,并将参数接受方式设为 @RequestBody 如下图:
2、postman中请求方式改为post并再body中传递json数据 ["第一个值","第二个值","第三个值"] 如下图:
版权归原作者 voidL123 所有, 如有侵权,请联系我们删除。