0


postman各种参数传递调试

1.RequestBody 传递
–对象

 @RequestMapping("/user/login") public ResponseResult login(@RequestBody User user){ ResponseResult result = sysUserService.login(user); return result; }


–数组,集合同数组

@RequestMapping("/test") public String test(@RequestBody Integer[] ids){ String result=String.valueOf(Arrays.toString(ids)); return result; }


2.路径参数传递

@RequestMapping("/test/{id}") public String test(@PathVariable Integer id){ String result=String.valueOf(id); return result; }

3.请求参数RequestParam 传递
–数组,对象,集合同

@RequestMapping("/test") public String test(@RequestParam List<Integer> ids){ String result=String.valueOf(ids.toString()); return result; }


4.文件参数传递

标签: postman 测试工具

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

“postman各种参数传递调试”的评论:

还没有评论