0


springboot后端接收前端传来的数组

后端接收前端传来的数组参数

1 使用@RequestParam 接收数组
在这里插入图片描述
postman测试:
在这里插入图片描述

2 使用@RequestBody 接收
在这里插入图片描述
postman测试:
注意要在请求体 body 中传 json 字符串。
在这里插入图片描述
结果:
删除前:
在这里插入图片描述
删除后:
在这里插入图片描述

两者的区别:

  • @RequestBody接收前端传来的请求体中的字符串 因为get请求是没有请求体的,所以前端发送请求时要以post的方式发送
  • @RequestParam 接收url中的参数

总结:如果要将接收的数据在请求体中 用@RequestBody, 如果在url的参数中,用@RequestParam接收


本文转载自: https://blog.csdn.net/qq_44227032/article/details/131970424
版权归原作者 Margeryry 所有, 如有侵权,请联系我们删除。

“springboot后端接收前端传来的数组”的评论:

还没有评论