从 c:import 内部重定向到不同页面

发布于 2024-10-25 08:18:57 字数 254 浏览 1 评论 0原文

有什么方法可以从使用 从 JSP 调用的 Spring 控制器重定向到不同的页面吗?

场景如下:我有一个 Spring WizardFormController,它处理多页面表单并使用 JSP 和 包含到网站中。向导完成后,我想重定向到另一个页面,但这似乎从控制器上不可能。至少,如果我可以向周围的 JSP 发送消息,那就已经很有帮助了。

Is there any way I can redirect to a different page from a Spring Controller that gets called from a JSP using <c:import>?

Scenario is as follows: I have a Spring WizardFormController, that handles a multi-page form and is included into the website using a JSP and <c:import>. After the wizard is finished, I would like to redirect to a different page, but that seems to be impossible from the Controller. At least, if I could get a message to the surrounding JSP, it would already help.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

铃予 2024-11-01 08:19:00

看来,唯一的方法是使用 JavaScript 创建客户端重定向,如下所示:

<script type="text/javascript>
    window.location.href = '<URL of Target>';
</script>

It seems, the only way is to use JavaScript to create a client-side redirect like this:

<script type="text/javascript>
    window.location.href = '<URL of Target>';
</script>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文