Spring Webflow 2.0 - 与另一个流通信

发布于 2024-09-26 00:28:24 字数 380 浏览 2 评论 0原文

我有一个取消按钮,可以让用户返回到起始页。取消按钮位于流程 createXYZ.xml 中,起始页是流程 start.xml 中的视图状态,如何从一个流程链接到另一个流程。

开始:

<view-state id="start" view="start">
</view-state>       

取消按钮:

<view-state id="createXYZ" view="createXYZ">
    <transition on="cancel" to=" ? ">
    </transition>
</view-state>

I have a cancel button which should bring the user back to the start page. The Cancel button is in a flow createXYZ.xml the start page is a view-state in the flow start.xml how can I link from one flow to another.

Start:

<view-state id="start" view="start">
</view-state>       

Cancel Button:

<view-state id="createXYZ" view="createXYZ">
    <transition on="cancel" to=" ? ">
    </transition>
</view-state>

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

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

发布评论

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

评论(1

小嗷兮 2024-10-03 00:28:24

当您想要继续主流程,但想要一些附加功能时,子流程状态非常有用。您将调用子流程,执行一些工作,然后退出并返回到原始流程。

我不确定这是否是您想要做的。如果您只是想结束流程并开始一个新流程,您可以执行类似的操作,

<view-state id="createXYZ" view="createXYZ">
   <transition on="cancel" to="endFlow"></transition>
</view-state>
<end-state id="endFlow" view="externalRedirect:../myOtherFlow.action"/>

这不仅会结束您刚刚处理的流程(这非常有用),还会启动新流程。在本例中,新流称为 myOtherFlow

A subflow state is useful when you have a situation where you want to continue your main flow, but want some added functionality. You would invoke the subflow, do some work, then exit out and return back to the original flow.

I am not sure if that is what you are trying to do. If you are simply trying to end the flow and start a new flow you can do soemthing like

<view-state id="createXYZ" view="createXYZ">
   <transition on="cancel" to="endFlow"></transition>
</view-state>
<end-state id="endFlow" view="externalRedirect:../myOtherFlow.action"/>

This will not only end the flow you were just working on (which is very useful) but also start the new flow. In this case the new flow is called myOtherFlow

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