我可以删除“执行”吗?来自 GET 的参数?

发布于 2024-10-31 01:41:07 字数 560 浏览 0 评论 0原文

我使用 Spring Webflow。我可以从 GET 中删除“执行”参数吗?

例如:

http://localhost:8090/myapp/account/register.doexecution=e1s2

http://localhost:8090/myapp/account/register .do?execution=e2s12

http://localhost: 8090/myapp/account/register.doexecution=e3s2

I use to Spring Webflow. Can I get remove of the 'execution' parameter from GET?

For example:

http://localhost:8090/myapp/account/register.do?execution=e1s2

http://localhost:8090/myapp/account/register.do?execution=e2s12

http://localhost:8090/myapp/account/register.do?execution=e3s2

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

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

发布评论

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

评论(1

初熏 2024-11-07 01:41:08

您可以通过将流执行器的 always-redirect-on-pause 属性设置为 false 来实现,但不推荐 - execution 参数原因该网址有状态可加入书签

<webflow:flow-executor id="flowExecutor" >
    ...
    <webflow:flow-execution-attributes>
        <!-- without execution param -->
        <webflow:always-redirect-on-pause value="false"/>
    </webflow:flow-execution-attributes>
</webflow:flow-executor>

此网址可能有用: http://www.ervacon.com/products/swf/tips/tip4.html

You can do it by setting always-redirect-on-pause attribute of flow executor to false, but it is not recommended - execution parameter causes that url is stateful and bookmarkable.

<webflow:flow-executor id="flowExecutor" >
    ...
    <webflow:flow-execution-attributes>
        <!-- without execution param -->
        <webflow:always-redirect-on-pause value="false"/>
    </webflow:flow-execution-attributes>
</webflow:flow-executor>

This url may be useful: http://www.ervacon.com/products/swf/tips/tip4.html

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