这是我在jsf 2.0项目中尝试的代码。
<h:input value="#{studentInfoBean.registrationFormNo}" id="registrationFormId"/>
<h:commandButton
type="submit"
actionListener="# {studentInfoBean.searchStudentbyformNo}">
<f:ajax execute="registrationFormId" render="testlist" />
</h:commandButton>
当我在输入字段中输入一个值然后单击commandButton以便它从bean中给出一个结果我的bean名称是studentInfobean SessionScoped。我的问题是,当输入字段为空时,然后单击命令按钮,因此不会调用bean,所以我没有得到任何响应,我的透明结果保持不变。
谢谢