首页 > 代码库 > Struts2网页面传值两种方式

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网页面传值两种方式