我有一个包含以下数据的注册表:
名字姓年龄电子邮件地址电话号码暗语重新输入密码。
现在,如果密码不匹配或年龄是文本错误消息显示,我有一个重置按钮来清除所有字段,但错误出现后,重新发送按钮不会清除消息或字段。
这是我的java类中Button和whats的代码
<h:commandButton value="Reset" type="reset" action="#{javaBeanTest.reset()} />
在Bean类中:
public void reset()
{
this.foreName = null;
this.surname = null;
this.age = 0;
this.password = null;
this.confirmPass = null;
this.email = null;
}
我该怎么做?字段被设置为空白,但消息保持
试着在命令按钮中使用render="@form",它会更新表单和其中的错误。你用什么来显示错误消息?
试试这个方法:
<h:commandButton value="Reset" action="#{javaBeanTest.reset()} />
<f:ajax render="@form"/>
</h:commandButton>