controller获取路由参数(两种形式)

【1】路由"xxx/edit/"+id;

在方法头上添加:@GetMapping("/edit/{id}")
或在方法参数添加:String edit(@PathVariable("id") String id){

【2】路由"xxx/edit/?id="+id;

直接在方法中加:String edit(@RequestParam("id") String id){

学问思辨行
24 声望0 粉丝

记录过程,成长以后会慢慢感受到,价值必将无穷大!