在我的xhtml中我有:
<p:commandButton actionListener="#{accountInfoBean.onChangePassword}"
ajax="true" onsuccess="changePasswordDlgVar.show()"
update=":changePassForm:changePasswordPanel" />
我的豆子:
private String password;
private String confirmPassword;
public void onChangePassword() {
this.password = null;
this.confirmPassword = null;
}
我不明白数据库中的密码更改方式以及onsuccess
,ajax
和update
属性是什么?
答案 0 :(得分:0)
onSuccess
指向服务器响应完成且没有错误后执行的javascript函数。
修改强>
环顾四周,发现this和this问题加上documentation。
有关onsuccess Client side callback execute before dom is updated.
的文档
我稍后会试着解释一下例子。