spring webflow:根据某些输入重定向到最终状态

发布于 2024-11-03 17:05:01 字数 330 浏览 2 评论 0原文

我的流程中有一些输入,即

<input name="someInput" type="long" required="true"/>

我想在最终状态中重定向到取决于此输入的位置。我正在尝试以下操作:

<end-state id="done" view="externalRedirect:contextRelative:/blahblah/${someInput}"/>

这不起作用(网络流不会用它的值替换 ${someInput} (它将其视为标准字符串。您知道如何正确执行此操作吗?

I have in my flow some input, i.e.

<input name="someInput" type="long" required="true"/>

and I'd like to redirect in an end-state to a location that depends on this input. I'm trying the following:

<end-state id="done" view="externalRedirect:contextRelative:/blahblah/${someInput}"/>

This is not working (the webflow does not replace ${someInput} with its value (it treats this as a standard string. Do you know how to do this properly?

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

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

发布评论

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

评论(1

红焚 2024-11-10 17:05:01

如果您正在谈论 Webflow 2.0,请尝试

<end-state id="done" view="externalRedirect:contextRelative:/blahblah/#{someInput}"/>

If you are speaking about Webflow 2.0 please try

<end-state id="done" view="externalRedirect:contextRelative:/blahblah/#{someInput}"/>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文