Struts2网页面传值两种方式

Posted 江山一族

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Struts2网页面传值两种方式相关的知识,希望对你有一定的参考价值。

第一种方式:

/** 列表 */
public String list() throws Exception {
List<Role> roleList = roleService.findAll();
ActionContext.getContext().put("roleList", roleList);
return "list";
}

 

第二种方式:

/** 修改页面 */

private Role model = new Role();
public String editUI() throws Exception {
// 准备回显的数据
Role role = roleService.getById(model.getId());
ActionContext.getContext().getValueStack().push(role);

return "saveUI";
}

以上是关于Struts2网页面传值两种方式的主要内容,如果未能解决你的问题,请参考以下文章

struts2 的action 怎么向页面传值?

[Layui]表单传值到后端的两种方式

ios常见的页面传值方式

struts2 action怎么从页面取值传值

struts2中jsp页面与action之间的传值

vue打开新窗口的两种方式