字符串变量分配给视图状态?

发布于 2024-10-27 10:54:41 字数 515 浏览 3 评论 0原文

我不确定这在 webflow 2.2.1

flow.xml

<view-state id="flowId1" model="flowModel1" view="/WEB-INF/templates/Flow_Form/form1.jsp">
    <set attribute="strVar" value="${'someStringVar'}" />       
    <transition on="step1" to="step1Action" />
</view-state>

jsp

<h1>${strVar}</h1>

中是否可行从本质上讲,我想分配一个 String var 来更改各个视图的值-状态,在 flow.xml 中设置。

是否有其他简单的推荐方法?

谢谢

I am not sure if this is possible in webflow 2.2.1

flow.xml

<view-state id="flowId1" model="flowModel1" view="/WEB-INF/templates/Flow_Form/form1.jsp">
    <set attribute="strVar" value="${'someStringVar'}" />       
    <transition on="step1" to="step1Action" />
</view-state>

jsp

<h1>${strVar}</h1>

Essentially, I'd like to assign a String var that will change value accross individual view-states, that is set in the flow.xml..

Are there any other simple recommended approaches to this?

Thanks

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

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

发布评论

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

评论(1

燕归巢 2024-11-03 10:54:41

知道了.. :)

<view-state id="flowId1" model="flowModel1" view="/WEB-INF/templates/Flow_Form/form1.jsp">
    <on-entry>
            <evaluate expression="'someStringVar'" result="flowScope.strVar"/>
        </on-entry>     
    <transition on="step1" to="step1Action" />
</view-state>

got it.. :)

<view-state id="flowId1" model="flowModel1" view="/WEB-INF/templates/Flow_Form/form1.jsp">
    <on-entry>
            <evaluate expression="'someStringVar'" result="flowScope.strVar"/>
        </on-entry>     
    <transition on="step1" to="step1Action" />
</view-state>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文