我有一个类似 iframe 的主页
<iframe id="contentframe" name="contentframe" src="Report.html"
style="height: 99%; width: 100%;" frameborder="0" >
</iframe>
我有一个异常处理程序,比如
@ExceptionHandler(Exception.class)
public ModelAndView handleAllException(Exception ex) {
ModelAndView mv=new ModelAndView("Login");
mv.addObject("loginForm", new LoginForm());
mv.addObject("loginMsg", "No Database Connection");
return mv;
}
Report.html
但是当处理 iframe 内的负载请求时数据库连接丢失时Login.jsp
。我希望它在 iframe 之外作为整个页面加载。
任何帮助表示赞赏。