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数据 ["第一个值","第二个值","第三个值"] 如下图:文章来源:https://www.toymoban.com/news/detail-541980.html
文章来源地址https://www.toymoban.com/news/detail-541980.html
到了这里,关于GET 请求接收 List<String>的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!