@PostMapping/ @GetMapping等请求格式
目录
1.只传一个参数的
第一种
第二种
第三种:表单
2.传整个对象的
2.1修改实体类就是传整个对象过来
2.2新增实体类就是传整个对象过来新增
1.只传一个参数的
第一种
@PostMapping("/add/{newsId}")
public Result addOne(@PathVariable Integer newsId) {}
postman请求格式:
localhost:8080/test/file/add/77
第二种
@PostMapping("/add")
public Result addOne(Integer newsId) {}
postman请求格式:
localhost:8080/test/file/add?newsId=77
第三种:表单
@PostMapping("/add")
public Result addOne(@RequestParam Integer id) {
//。。。。。。。
return Result.OK();
}
postman