model.addAttribute("method", "update");

Posted Legolas

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了model.addAttribute("method", "update");相关的知识,希望对你有一定的参考价值。

@RequestMapping(method = RequestMethod.GET, value = "/update/{id}")
public String forUpdate(Model model, @PathVariable("id") Long id) {
SystemRole systemRole = systemRoleService.getById(id);
model.addAttribute("systemRole", systemRole);
model.addAttribute("method", "update");
return "role/role_edit";
}

以上是关于model.addAttribute("method", "update");的主要内容,如果未能解决你的问题,请参考以下文章

jsp里面判断后台有没有model.addAttribute()一个list进来。

关于Model,ModelMap,Request,Session存值,然后从jsp页面取值

model.addattribute()的作用

model.addAttribute() 对于每个循环

spring 中@ModelAttribute、model.addAttribute 有啥区别?

FreeMarker中调用Java方法的实现