name
在具有一个文本框和按钮的 JSP 页面中Login
<html:form action="login">
<html:text property="name"/>
<html:submit value="Login" />
</html:form>
<html:errors/>
并且在 StructsActionForm 中具有validate()
类似的方法
public ActionErrors validate(ActionMapping mapping, HttpServletRequest request) {
ActionErrors errors = new ActionErrors();
if (getName() == null || getName().length() < 1) {
errors.add("name", new ActionMessage("error.name.required"));
// TODO: add 'error.name.required' key to your resources
}
return errors;
}
如果单击时文本框name
有一个空输入,它应该在 的帮助下显示错误消息,但它不显示错误消息。Login
error.name.required
<html:errors/>
我正在使用 Net-beans 8.0、Struts 1.3.10。
请帮我解决这个问题提前谢谢。