字符串变量分配给视图状态?
我不确定这在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
知道了.. :)
got it.. :)