我想使用在我的视图home.jsp
中显示错误消息<c:out value="${message}" />
。但是在显示它之后,我想清除它。任何想法?
user1710917
问问题
118 次
4 回答
0
使用Ajax
OR 普通Javascript
。
另一种方法是刷新整个页面;但不推荐。
于 2012-10-01T06:07:25.193 回答
0
假设您想自动清除它,您可以在给定的时间段后使用诸如 JQuery 之类的东西.delay
来执行操作,这可能是将用户重定向到另一个页面,或者只是隐藏div
用于呈现错误的页面。
于 2012-10-01T06:07:50.950 回答
0
使用javascript方法setTimeout()
http://www.w3schools.com/js/js_timing.asp
于 2012-10-01T06:08:19.730 回答
0
添加RedirectAttributes redirectAttributes
到您的@RequestMapping
函数参数并使用以下方法设置属性:
redirectAttributes.addFlashAttribute("message", "whatever went wrong") ;
return "redirect:/path_to_your_view" ;
请记住:这与 Spring 的redirect:
功能密切相关。
于 2012-10-01T06:06:11.107 回答