这里可以采用redirect以get形式向指定页面发出get请求,指定页面完成后会再次跳转到redirect后边指定的页面
格式:需要请求的URL?redirect=请求URL完成后需要跳转的地址
例如:
response.sendRedirect("http://localhost:8080/test?redirect=http://localhost:8080/test2;
当然,这种用途常见于跳转到登陆页面登陆后再次返回原来的页面:
response.sendRedirect("http://localhost:8080/page/login?redirect=" + request.getRequestURL());
接下来还需要在页面写相关js代码
由于时间原因明天再写
未完
原文地址:https://www.cnblogs.com/ITDreamer/p/9457531.html
时间: 2024-11-05 21:59:20