什么是onSuccess,commandButton中的aJax?

时间:2014-06-03 07:26:08

标签: jsf primefaces

在我的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;
}

我不明白数据库中的密码更改方式以及onsuccessajaxupdate属性是什么?

1 个答案:

答案 0 :(得分:0)

onSuccess指向服务器响应完成且没有错误后执行的javascript函数。

修改

环顾四周,发现thisthis问题加上documentation。 有关onsuccess Client side callback execute before dom is updated.的文档 我稍后会试着解释一下例子。