RequestParam接收数组
时间: 2023-10-30 20:04:39 浏览: 116
SpringMVC接收请求参数所有方式总结
@RequestParam可以用来接收数组类型的参数。在使用@RequestParam注解时,需要在注解的括号内指定参数名称,并在后续的代码中定义参数的类型为List<String>。例如,可以使用以下方式来接收名为"productIds"的数组参数:
@RequestParam(name = "productIds") List<String> productIds
在Postman中传递数组参数时,可以通过在URL中使用逗号将数组元素连接起来,如:
http://127.0.0.1:8082/recommendations?productIds=aaa,bbb,ccc
在后端代码中,可以通过@RequestParam注解来定义名为"productIds"的List<String>类型参数来接收数组参数。如:
@RequestParam(name = "productIds") List<String> productIds
这样,当从前端传递数组参数时,后端就可以成功接收并使用该数组参数了。
阅读全文