0

Spring Web Flow ...如何仅在一次转换时停止表单验证。

如何仅在一次转换上停止表单验证。使用以下代码,我打开了表单验证,一切正常,但是如果用户单击“取消”,我不想运行表单验证。反正围绕这个?

<view-state id="helloworld" view="input.jsp" model="customer" popup="true">
<transition on="submit" to="preview" />
<transition on="cancel" to="thanks"/>
</view-state> 
4

1 回答 1

6

转换有能力定义你是否想要绑定和验证,只需将它们设置为 false。

<view-state id="helloworld" view="input.jsp" model="customer" popup="true">
<transition on="submit" to="preview" />
<transition on="cancel" to="thanks" validate="false" bind="false"/>
</view-state>
于 2012-07-25T13:36:44.737 回答