springmvc 中常用到 redirect 来实现重定向。但使用场景各有需求,如果只是简单的页面跳转显然无法提心吊胆的反义词满足所有要求,比如重定向时需要在 url 中拼接参数,或者返回的页面需要传递 model。
springmvc 用 redirectattributes 解决了这两个需要。
@requestmapping("/save")public string save(ur ur, redirectattributes redirectattributes) { redirec深圳到澳门一日游tattributes.addattribute("param", "value1"); return "redirect:/index";}
请求 /save 后,跳转至/index,并且会在url拼接 ?param=value1。
@requestmapping("/save")public string save(ur ur, redirectattributes redirectattributes) { redirectattributes.addflashattribute("param", "value1"); return "redirect:/index";}
请求 /save 后,跳转至 /index,并且可以在 index 对应的模版中通过表达式,比如 jsp 中 jstl 用 ${param},获取返回值。该值其实是保存在 英语书信作文范文ssion 中的,并且会在下次重定向请求时删除。
redirectattributes 中两个方法的简单介绍就是这样。
a.jsp发送请求进入controller,并想重定向到b.jsp并携带参数,发现携带的参数前台获取不到,然后采用以下方法即可
@requestmapping("/index") public string delete(string id, redirectattributes redirectattributes) { redirectattributes.addflashattribute("msg","删除成功!"); return "redirect:hello"; }
@requestmapping("hello") public string index( @modelattribute("msg") string msg) { return "安利蛋白粉副作用ntinel"; }
首先进入delete方法,将msg放在redirectattributes里,然后重定向到hello,通过@modelattribute(“msg”) string msg获取到msg的值,那么自然ntinel页面就能获取到msg的值。
b.jsp发送请求,跳转到a.jsp,并将请求所产生的数据携带到a页面。
以上为个人经验,希望能给大家一个参考,也希望大家多多支持www.887551.com。
本文发布于:2023-04-04 03:33:49,感谢您对本站的认可!
本文链接:https://www.wtabcd.cn/fanwen/zuowen/d33fc6f038b01dff2692b739a833bdbd.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文word下载地址:SpringMVC 重定向参数RedirectAttributes实例.doc
本文 PDF 下载地址:SpringMVC 重定向参数RedirectAttributes实例.pdf
留言与评论(共有 0 条评论) |