在我的 facelet 中,我有以下 commandLink:
<h:form>
<p:commandLink id="excelExport" action="#{studentBean.exportReport()}" ajax="false">
<f:param name="type" value="EXCEL" />
<p:graphicImage library="img" name="excel.png" width="20" />
</p:commandLink>
</h:form>
这就是我在支持 bean 中的内容:
@ManagedBean
@RequestScoped
public class StudentBean implements Serializable {
.............
@ManagedProperty(value = "#{param.type}")
private String typeOfExport;
.............
public void preRender(ComponentSystemEvent event) {
System.out.println("Inside prerender");
if (FacesHelper.isAjaxRequest()) {
return;
}
}
.............
public void exportReport() {
System.out.println("Type of Report is: " + typeOfExport);
}
}
现在我想在单击 commandLink 后执行方法 exportReport。但是这里发生的是,在执行该方法之后,它将再次进行 preRender。我不想再次渲染整个表单。知道我在这里犯了什么错误吗?