Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在我的 struts 1 应用程序中使用瓷砖。
我在其中一个图块中有一个登录页面,并且在我的 validate 中有一个 validate 方法ActionForm,该方法对登录名进行了一些验证。如果出现验证错误,则会显示错误消息,但有错误的登录页面显示为独立的——也就是说,不显示图块结构。
ActionForm
我该如何解决这个问题?
提前致谢。
在您的操作定义中,您可能在输入参数中指定了 login.jsp 而不是登录磁贴名称:
<action path="/login" type="..." name="loginForm" scope="request" input="/login.jsp" validate="true" />
应该
<action path="/login" type="..." name="loginForm" scope="request" input="login.tile.name" validate="true" />