我正在使用 primefaces-4.0 构建一个 Web 应用程序。我想在单击命令按钮时同时调用两个 bean 方法。我尝试使用remoteCommand。
<p:commandButton value="Submit" ajax="false"
actionListener="#{userBean.execute}"
onclick="callCorrelation()">
</p:commandButton>
<p:remoteCommand name="correlation" update="correlationDialog"
actionListener="#{userBean.correlation}" />
Java脚本功能:
<head>
<script type="text/javascript">
$(document).callCorrelation(function() {
correlation ();
});
</script>
</head>
但它没有用。
有没有其他方法可以同时调用两个 bean 方法?