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网页面传值两种方式的主要内容,如果未能解决你的问题,请参考以下文章