网页导航

发布于 2024-11-06 09:06:37 字数 153 浏览 1 评论 0原文

我正在寻找有关如何为基于 Spring 的 Web 应用程序最好地实现网页导航逻辑的指南。例如:我有一个网页“C”,如果单击“确定”,我希望流程返回到页面“A”(如果那是上一页)或页面“B”(如果那是上一页)。我目前正在页面上使用隐藏字段来跟踪我到达的页面...但我认为必须有更好的方法...

I'm looking for guidelines for how to best implement web page navigation logic for a Spring based web application. For example: I have a web page 'C' where if I click ok, I want flow to return to page 'A' if that was the previous page, or page 'B' if that was the previous page. I am currently using hidden fields on a page to track from which page I arrived...but I think there must be a better way...

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

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

发布评论

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

评论(2

抱猫软卧 2024-11-13 09:06:37

您可以使用 flash 作用域 bean 来保存重定向的视图 Url。

您可以从此页面阅读有关 Flash 范围的信息:

http://blog.smartkey.co.uk/2011/01/implementing-flash-scope-in​​-java-web-applications/

查看我对这篇文章的回复。它解释了如何在 SPring MVC 环境中实现 Flash Scope。

Spring MVC 自定义作用域 bean

使用此作用域,您始终可以检索 URL您将重定向的表单,然后从检索到的值构建链接。

希望有帮助。

You can use flash scope bean for saving the view Url from which you are redirected.

You can read about flash scope from this page:

http://blog.smartkey.co.uk/2011/01/implementing-flash-scope-in-java-web-applications/

See me response from this post. it Explains how to implement Flash Scope in SPring MVC environment.

Spring MVC custom scope bean

with this scope you can alway retrieve the URL form which you will redirected and then build link form the value retrieved.

Hope it helps.

妥活 2024-11-13 09:06:37

我的建议是使用 Spring Web Flow (http://www.springsource.org/webflow)。

它旨在完全按照您的意愿行事。控制页面之间的流程。

我几个月前开始使用它,我喜欢它。

My suggestion would be to use Spring Web Flow (http://www.springsource.org/webflow).

It's intended to do exactly what you want. Control the flows between pages.

I start using it a couple of month ago and I love it.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文