springmvc提供了RedirectAttributesModelMap类可以绑定重定向跳转需要向页面传递的值
RedirectAttributesModelMap rModel = new RedirectAttributesModelMap();
rModel.addFlashAttribute("键", 值);
RedirectAttributesModelMap继承了ModelMap,实现了RedirectAttributes接口,原理是把属性放到session中,在跳转到页面后又在session中移除了该对象,所以页面刷新后这个值还是会丢失。
时间: 2024-10-13 09:15:42