我在遗留项目中使用 struts 1。我想验证表格。我读过关于那的好 文章。但是我不明白如果表单的 validate 方法返回非空 ActionErrors,struts 会做什么。我已经指定validate="true"
并input="somepage.jsp"
在行动,但如果我的表单验证没有通过,我会得到一个空白页。据我了解,它必须停留在输入中指定的页面?我对吗?
编辑
<action path="/struts/BlaBlaAction"
type="com.example.BlaBlaAction"
name="BlaBlaForm"
validate="true"
scope="request"
input="/struts/blablainput.jsp">
<forward name="someaction" path="/struts/AnotherAction.do"/>
<forward name="error" path="/error.html" redirect="true"/>
</action>
文件夹 struts 位于我的应用程序的根目录中